-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 996 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "speckle-automate-typescript-example",
"version": "1.0.0",
"description": "Example Speckle automate function using typescript",
"type": "module",
"main": "src/index.ts",
"scripts": {
"main": "vite-node src/index.ts",
"generateSchema": "vite-node src/generateSchema.ts",
"build": "ncc build src/index.ts -o dist",
"build:vite": "vite build",
"prettier:fix": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@liuli-util/vite-plugin-node": "^0.7.0",
"@types/node": "^20.5.7",
"@vercel/ncc": "^0.36.1",
"prettier": "^3.0.2",
"prettier-plugin-organize-imports": "^3.2.3",
"typescript": "^5.2.2",
"vite-node": "^0.34.3"
},
"dependencies": {
"@speckle/objectloader": "^2.15.1",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"node-fetch": "^3.3.2",
"zod": "^3.22.3",
"zod-to-json-schema": "^3.21.4"
}
}