This repository was archived by the owner on Dec 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.39 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.39 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
{
"name": "three-devtools",
"private": true,
"version": "0.4.0",
"description": "three.js developer tools web extension",
"scripts": {
"build:source": "./scripts/build-source.sh",
"build:deps": "./scripts/build-deps.sh",
"build:dist": "./scripts/build-dist.sh",
"build:dist:chrome": "./scripts/build-dist.sh chrome",
"serve": "http-server . -c-1",
"version": "node ./scripts/version.js && git add *.json",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsantell/three-devtools.git"
},
"author": "Jordan Santell <jordan@jsantell.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsantell/three-devtools/issues"
},
"homepage": "https://github.com/jsantell/three-devtools#readme",
"dependencies": {
"@egjs/agent": "2.1.5",
"lit-element": "2.2.1",
"lit-html": "1.1.2",
"three": "0.137.0",
"webextension-polyfill": "0.4.0"
},
"devDependencies": {
"http-server": "^14.1.1",
"json": "10.0.0"
},
"@pika/web": {
"webDependencies": [
"webextension-polyfill/dist/browser-polyfill.js",
"lit-element",
"lit-html/directives/if-defined.js",
"@egjs/agent",
"three",
"three/src/constants.js",
"three/examples/jsm/loaders/GLTFLoader.js",
"three/examples/jsm/geometries/TeapotBufferGeometry.js"
]
}
}