-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 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
45
46
47
48
49
50
51
52
53
54
{
"name": "tsl-visual-nodes-editor",
"private": true,
"version": "0.0.6",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/bandinopla/three.js-visual-node-editor"
},
"bugs": {
"url": "https://github.com/bandinopla/three.js-visual-node-editor/issues"
},
"author": "bandinopla",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write src"
},
"keywords": [
"three",
"three.js",
"javascript",
"typescript",
"3d",
"nodes",
"shader",
"shader-editor",
"webgl",
"webgl2",
"webgpu",
"webxr",
"canvas",
"svg",
"html5"
],
"devDependencies": {
"@eslint/js": "^9.24.0",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"prettier": "^3.5.3",
"typescript": "~5.7.2",
"typescript-eslint": "^8.29.1",
"vite": "^6.2.0"
},
"dependencies": {
"@types/three": "^0.174.0",
"three": "^0.174.0"
}
}