forked from threlte/three-inspect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.65 KB
/
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
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
55
56
57
58
59
60
61
62
63
{
"name": "three-inspect",
"version": "0.2.4",
"type": "module",
"files": [
"dist"
],
"main": "./dist/three-inspect.umd.cjs",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.umd.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/michealparks/three-inspect.git"
},
"keywords": [
"three",
"three.js",
"3d",
"inspect",
"debug",
"webgl",
"monitoring"
],
"license": "MIT",
"scripts": {
"start": "vite -c vite.playground.config.ts --host --open",
"build": "vite build && tsc --emitDeclarationOnly",
"build-playground": "vite build -c vite.playground.config.ts --base=/three-inspect/",
"check": "tsc",
"lint": "eslint ./src",
"preview": "vite preview --host",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@0b5vr/tweakpane-plugin-rotation": "^0.1.1",
"@pangenerator/tweakpane-textarea-plugin": "^1.0.4",
"@tweakpane/core": "^1.1.1",
"@tweakpane/plugin-essentials": "^0.1.5",
"@types/three": "^0.146.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"camera-controls": "^1.37.4",
"eslint": "^8.30.0",
"flexible-tree": "^0.0.9",
"postcss": "^8.4.20",
"postprocessing": "^6.29.1",
"tailwindcss": "^3.2.4",
"three": "^0.148.0",
"three-good-godrays": "^0.4.1",
"three-kit": "github:michealparks/three-kit",
"tweakpane": "^3.1.1",
"tweakpane-image-plugin": "^1.1.3",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vite-plugin-glsl": "^1.0.1"
}
}