-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 KB
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
35
36
37
38
39
40
41
42
43
44
{
"name": "spark-gltf-demo",
"version": "0.0.12",
"description": "spark.js demo",
"keywords": [
"spark",
"texture",
"compression",
"ludicon",
"webgpu",
"three.js",
"gltf"
],
"license": "MIT",
"author": "Ludicon LLC (https://ludicon.com/)",
"type": "module",
"main": "index.html",
"scripts": {
"dev": "vite",
"start": "vite --host",
"build": "vite build",
"preview": "vite preview --host",
"prettier:check": "npx prettier . --check",
"prettier:write": "npx prettier . --write",
"lint": "eslint 'src/**/*.js' --ignore-pattern 'src/js/levels.js'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@vitejs/plugin-basic-ssl": "^2.1.0",
"eslint": "^9.30.0",
"prettier": "^3.6.2",
"rollup": "^4.50.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-summary": "^3.0.1",
"vite": "^7.0.0"
},
"dependencies": {
"@gltf-transform/core": "^4.2.1",
"@gltf-transform/extensions": "^4.2.1",
"@gltf-transform/functions": "^4.2.1",
"@ludicon/spark.js": ">=0.1.0",
"three": "^0.182.0"
}
}