-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "bitsy-boilerplate",
"version": "1.0.0",
"description": "tool for building bitsy games",
"main": "index.js",
"type": "module",
"scripts": {
"build-hacks": "rollup -c",
"build-html": "node --experimental-modules --experimental-json-modules --es-module-specifier-resolution=node index.mjs",
"watch-hacks": "npm-watch build-hacks",
"watch-html": "npm-watch build-html",
"build": "npm run build-hacks&&npm run build-html",
"start": "concurrently 'npm:watch-*'",
"fetch-bitsy": "node --experimental-modules --experimental-json-modules fetch-bitsy-source.mjs",
"postinstall": "npm run fetch-bitsy"
},
"author": "Sean S. LeBlanc & Elkie Nova",
"license": "MIT",
"dependencies": {
"@bitsy/hecks": "^21.4.0",
"@bitsy/optimizer": "^1.3.1",
"autoprefixer": "^10.4.14",
"concurrently": "^8.2.0",
"fs-extra": "^11.1.1",
"node-fetch": "^3.3.1",
"npm-watch": "^0.11.0",
"postcss": "^8.4.31",
"prompts": "^2.4.1",
"resolve": "^1.22.2",
"rollup": "^3.29.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"watch": {
"build-hacks": {
"patterns": [
"input/hacks.js"
]
},
"build-html": {
"patterns": [
"input",
".working"
],
"ignore": "input/hacks.js",
"extensions": "txt,js,mjs,css,bitsy,html"
}
}
}