-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 852 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 852 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
{
"name": "my-needle-engine-project",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"start": "npm run dev",
"build": "vite build -- --production",
"build:production": "npm run build",
"build:dev": "vite build",
"deploy": "npm run build && npx --yes needle-cloud deploy dist --token"
},
"dependencies": {
"@needle-tools/engine": "4.16.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"three": "npm:@needle-tools/three@^0.169.19"
},
"devDependencies": {
"@needle-tools/helper": "^1.11.5",
"@types/three": "0.169.0",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-react": "^4.3.1",
"ansi-styles": "^6.1.0",
"eslint-plugin-react-hooks": "^5.0.0",
"typescript": "^5.0.4",
"vite": "^6.0.0",
"vite-plugin-compression": "^0.5.1"
}
}