-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "erg-web-repl",
"version": "0.1.0",
"description": "Erg Web REPL",
"main": "index.js",
"bin": {
"erg-web-repl": ".bin/erg_web_repl.js"
},
"scripts": {
"full_build": "rm -rf dist docs && wasm-pack build && webpack --config webpack.config.js && mv dist docs",
"build": "rm -rf dist docs && webpack --config webpack.config.js && mv dist docs",
"full_build_win": "wasm-pack build && webpack --config webpack.config.js && move dist docs",
"build_win": "webpack --config webpack.config.js && move dist docs",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erg-lang/web-repl.git"
},
"keywords": [
"webassembly",
"wasm",
"rust",
"webpack"
],
"author": "Shunsuke Shibayama",
"license": "(MIT OR Apache-2.0)",
"bugs": {
"url": "https://github.com/erg-lang/web-repl/issues"
},
"homepage": "https://github.com/erg-lang/web-repl#readme",
"devDependencies": {
"copy-webpack-plugin": "^5.0.0",
"erg-playground": "file:pkg",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.1.5"
}
}