-
Notifications
You must be signed in to change notification settings - Fork 171
/
package.json
56 lines (56 loc) · 1.86 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
{
"name": "spectorjs",
"version": "0.9.33",
"description": "Explore and Troubleshoot your WebGL scenes easily.",
"keywords": [
"webgl",
"webgl2",
"debug",
"debugger",
"inspector"
],
"readme": "documentation/standaloneVersion.md",
"main": "dist/spector.bundle.js",
"files": [
"dist/spector.bundle.js"
],
"author": "@SpectorJS",
"repository": {
"type": "git",
"url": "git://github.com/BabylonJS/Spector.js.git"
},
"homepage": "https://spector.babylonjs.com",
"license": "MIT",
"scripts": {
"clean": "rm -r built/* & rm -r /dist/* & rm -r /extensions/spector.bundle.js",
"html": "node ./tools/devLiveReloadServer.js /../.temp/",
"watch": "webpack --config tools/webpack.config.js --env=dev",
"start": "run-p html watch -l",
"build:bundle": "webpack --config tools/webpack.config.js --env=prod",
"build:copybuild:copy:bundle": "node ./tools/copy.js /../dist/spector.bundle.js /../extensions/spector.bundle.js",
"build:concatBundleFunc": "concat-cli -f tools/spector.ext.header.js dist/spector.bundle.js tools/spector.ext.footer.js -o extensions/spector.bundle.func.js",
"build:tslint": "tslint -c ./tslint.json -p ./src/tsconfig.json",
"build": "run-s build:tslint build:bundle build:copybuild:copy:bundle build:concatBundleFunc -n",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@shaderfrog/glsl-parser": "^2.0.1"
},
"devDependencies": {
"@types/webxr": "^0.5.1",
"concat-cli": "^4.0.0",
"css-loader": "^6.7.1",
"exports-loader": "^4.0.0",
"http-server": "^14.1.1",
"livereload": "^0.9.3",
"npm-run-all": "^4.1.5",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"tslint": "^6.1.3",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}