-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.27 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
{
"name": "@live-codes/clio-browser-compiler",
"type": "module",
"version": "0.0.3",
"scripts": {
"build": "npm run worker && rollup -c",
"build-compiler": "npm run compile && npm run exec && npm run worker",
"compile": "rollup -c compile.rollup.config.js",
"exec": "rollup -c exec.rollup.config.js",
"worker": "rollup -c worker.rollup.config.js",
"dev": "npm run worker && rollup -c -w",
"start": "sirv public",
"deploy": "npm run build && cd public && vercel"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"bluebird": "^3.7.2",
"rollup": "^2.50.2",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-polyfill-node": "^0.7.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.43.1"
},
"dependencies": {
"@iarna/toml": "2.2.5",
"@surma/rollup-plugin-off-main-thread": "^2.2.2",
"clio-core": "^0.12.0",
"clio-rpc": "^0.9.0",
"clio-run": "^0.10.0",
"fontfaceobserver": "^2.1.0",
"object-inspect": "^1.10.3",
"sirv-cli": "^1.0.12"
}
}