-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
31 lines (30 loc) · 928 Bytes
/
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
{
"name": "boostlet",
"version": "0.0.1-alpha",
"source": "src/index.js",
"main": "dist/boostlet.min.js",
"scripts": {
"dev": "npx live-server --port=5501 --no-browser",
"test": "node --experimental-modules ./tests/scripts/index.js",
"prebuild": "git submodule init && git submodule update",
"build-boxcraft": "npx parcel build submodule/BoxCraft/src/index.js --dist-dir ./dist && node operatingSystem.js",
"build-boostlet": "npx parcel build --no-cache",
"build": "npm run build-boostlet && npm run build-boxcraft"
},
"devDependencies": {
"cross-env": "^7.0.3",
"parcel": "^2.11.0",
"process": "^0.11.10"
},
"dependencies": {
"@actions/core": "^1.10.1",
"chalk": "^5.3.0",
"cloudinary": "^1.41.2",
"colors": "^1.4.0",
"live-server": "^1.2.2",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"puppeteer": "^21.7.0",
"signale": "^1.4.0"
}
}