-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) Β· 984 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
{
"private": true,
"scripts": {
"copy-html": "mkdir -p build && cp src/non-module.html build/index.html",
"estrella": "./estrella.js",
"vite": "vite build src --emptyOutDir --outDir ../dist/ --config vite.config.js",
"vite-dev": "vite src --config vite.config.js",
"webpack": "webpack",
"worker-importscript": "copyfiles --flat node_modules/@oddjs/odd/dist/**/*.* build/vendor/odd/ && webpack --config webpack.worker.config.js && copyfiles --flat src/worker-non-module.html build/",
"test": "rimraf dist && rimraf build && \"$npm_execpath\" run estrella && \"$npm_execpath\" run vite && \"$npm_execpath\" run webpack && \"$npm_execpath\" run copy-html"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"crypto-browserify": "^3.12.0",
"estrella": "^1.4.1",
"parcel": "^2.8.2",
"rimraf": "^3.0.2",
"vite": "^4.0.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@oddjs/odd": "0.37.0"
}
}