-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 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
{
"name": "roadblocks",
"version": "1.3.0",
"description": "I don't know yet",
"main": "src/scripts/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git@github.com:AshKyd/roadblocks.git"
},
"author": "Ash Kyd <ash@kyd.com.au>",
"license": "BSD",
"bugs": {
"url": "https://github.com/AshKyd/roadblocks/issues"
},
"devDependencies": {
"i18n": "~0.5.0",
"i18next": "~2.0.0-alpha.17",
"stats.js": "~1.0.0"
},
"scripts": {
"start": "vite",
"build": "npm run clean && vite build && npm run build:web",
"build:web": "vite build --config web/vite.config.js",
"clean": "rm -rf dist chrome chrome.zip;mkdir -p dist;",
"encode-levels": "node src/scripts/levels/levels.js > src/scripts/levels/levels.json",
"build-chrome": "npm run clean;npm run build & cp src/chrome/ chrome/ -R;wait;cp dist/* chrome/ -R;cd chrome;zip ../chrome.zip -X -r *"
},
"browserify": {
"transform": [
"cssify",
"brfs"
]
},
"dependencies": {
"vite": "^7.3.1"
}
}