-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
29 lines (29 loc) · 951 Bytes
/
package.json
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
{
"name": "my-needle-engine-package",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "vite --host",
"build:dev": "vite build",
"build:production": "npm run build:dev && npm run gltf:transform",
"gltf:transform": "npm run transform --prefix node_modules/@needle-tools/gltf-build-pipeline"
},
"dependencies": {
"@needle-tools/engine": "^3.36.6",
"three": "npm:@needle-tools/three@^0.162.2",
"@needle-tools/samples-scripts": "file:./../../../../modules/needle-engine-samples/package/Runtime/_Shared/SampleScripts~"
},
"devDependencies": {
"@needle-tools/helper": "^1.8.0",
"@types/three": "0.162.0",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"typescript": "^5.0.2",
"vite": "4.3.9",
"vite-plugin-compression": "^0.5.1",
"@sveltejs/vite-plugin-svelte": "^2.0.4",
"@tsconfig/svelte": "^5.0.0",
"svelte": "^4.1.1",
"svelte-check": "^3.1.4",
"svelte-preprocess": "^5.0.3"
}
}