-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"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",
"types": "dist/spector.d.ts",
"files": [
"dist/spector.bundle.js",
"dist/spector.d.ts"
],
"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:types": "node ./tools/bundle-dts.js",
"build:copybuild:copy:bundle": "node ./tools/copy.js /../dist/spector.bundle.js /../extensions/spector.bundle.js",
"build:copy:worker:bundle": "node ./tools/copy.js /../dist/spector.worker.bundle.js /../extensions/spector.worker.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:types build:copybuild:copy:bundle build:copy:worker:bundle build:concatBundleFunc -n",
"test": "jest --config jest.config.js && npx playwright test && npx playwright test --config test/integration/playwright.config.ts",
"test:unit": "jest --config jest.config.js",
"test:e2e": "npx playwright test",
"test:visual": "npx playwright test --config test/integration/playwright.config.ts",
"test:visual:update": "npx playwright test --config test/integration/playwright.config.ts --update-snapshots",
"mcp:install": "cd mcp && npm install && npx playwright install chromium",
"mcp:build": "cd mcp && npm run build",
"mcp:test": "cd mcp && npm test",
"mcp:dev": "cd mcp && npm run dev",
"mcp:start": "cd mcp && npm start"
},
"dependencies": {
"@shaderfrog/glsl-parser": "^7.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/webxr": "^0.5.24",
"concat-cli": "^4.0.0",
"css-loader": "^7.1.4",
"exports-loader": "^5.0.0",
"http-server": "^14.1.1",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"livereload": "^0.10.3",
"npm-run-all": "^4.1.5",
"sass": "^1.98.0",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"tslint": "^6.1.3",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2"
}
}