forked from kobalab/Majiang
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.21 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": "majiang",
"version": "2.3.6",
"description": "HTML5 + JavaScript で動作する麻雀アプリ「電脳麻将」",
"private": true,
"scripts": {
"build:html": "pug -o docs -P src/html/page/",
"build:css": "stylus src/css/index.styl -o docs/css/majiang-2.3.6.css",
"build:js": "webpack --mode development --devtool inline-source-map",
"build": "npm run build:html && npm run build:css && npm run build:js",
"release": "npm run build:html && npm run build:css && webpack --mode production",
"clean": "rm -f docs/*.html docs/js/* docs/css/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kobalab/Majiang.git"
},
"keywords": [],
"author": "Satoshi Kobayashi (https://github.com/kobalab)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kobalab/Majiang/issues"
},
"homepage": "https://github.com/kobalab/Majiang#readme",
"overrides": {
"pug": "^3.0.2"
},
"devDependencies": {
"pug-cli": "^1.0.0-alpha6",
"stylus": "^0.62.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@kobalab/majiang-ai": "^1.0.10",
"@kobalab/majiang-core": "^1.2.1",
"@kobalab/majiang-ui": "^1.3.1",
"jquery": "^3.7.1"
}
}