forked from meta-quest/immersive-web-emulator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "immersive-web-emulator",
"version": "1.0.1",
"watch": {
"build:devtool": {
"patterns": [
"src"
],
"extensions": "js,css,html",
"quiet": false
}
},
"scripts": {
"build:devtool": "rollup -c --bundleConfigAsCjs",
"build:polyfill": "cd polyfill && npm run build",
"build": "rimraf dist && npm run build:polyfill && npm run build:devtool",
"lint": "eslint ./src",
"format": "prettier --write ./src/**/*",
"watch": "npm-watch",
"zip": "npm run build && bestzip iwe-release.zip dist/* icons/* manifest.json LICENSE.md"
},
"pre-commit": [
"lint"
],
"dependencies": {
"bootstrap": "^5.2.3",
"jquery": "^3.6.1",
"lodash": "^4.17.21",
"three": "^0.147.0"
},
"devDependencies": {
"bestzip": "^2.2.1",
"eslint-config-prettier": "^8.5.0",
"npm-watch": "^0.11.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.0",
"rimraf": "^4.1.2",
"rollup": "^3.6.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-import-css": "^3.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0"
}
}