-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.35 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": "papermario-ring",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "webpack --mode=production",
"start": "webpack-dev-server --no-inline --mode=development",
"check": "gts check",
"clean": "rimraf dist/* pkg target",
"fix": "gts fix",
"set-up-worktree": "if [ ! -f dist/.git ]; then git worktree prune && git worktree add -B gh-pages dist origin/gh-pages; fi",
"verify-clean-workspace": "if [ -n \"$(git status --porcelain)\" ]; then >&2 echo 'Git dir not empty!'; exit 1; fi",
"predeploy": "npm-run-all clean set-up-worktree clean build verify-clean-workspace",
"commit-gh-pages": "commitid=$(git rev-parse --short HEAD); (cd dist; git add . && git commit -m \"Deploy to commit $commitid\")",
"deploy": "npm run commit-gh-pages && git push origin gh-pages"
},
"keywords": [],
"author": "Alyssa Haroldsen <kupiakos@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^13.13.21",
"@wasm-tool/wasm-pack-plugin": "^1.3.1",
"copy-webpack-plugin": "^6.1.1",
"gts": "^2.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"mnemonist": "^0.38.0"
},
"engines": {
"node": ">=10"
}
}