-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.67 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "zh-chess",
"version": "2.1.1",
"description": "A Chinese chess framework that supports browsers and nodejs(一款运行在浏览器和nodejs环境的中国象棋框架)",
"main": "./lib/zh-chess.cjs.js",
"module": "./lib/zh-chess.es.js",
"browser": {
"./lib/zh-chess.es.js": "./lib/zh-chess.es.js",
"./lib/zh-chess.cjs.js": "./lib/zh-chess.cjs.js"
},
"types": "./lib/zh-chess.d.ts",
"scripts": {
"dev": "rollup -c -w",
"bulid": "rollup -c",
"node:test": "node ./example/node.js",
"doc:gen": "typedoc --name zh-chess(中国象棋js框架) --entryPoints src/index.ts --out docs --readme intro.md --htmlLang zh-cn",
"doc:dev": "typedoc --name zh-chess(中国象棋js框架) --entryPoints src/index.ts --out docs --readme intro.md --htmlLang zh-cn --watch"
},
"keywords": [
"zh-chess",
"chess",
"js-chess",
"node-chess",
"chinese-chess"
],
"author": {
"name": "kongyijilafumi",
"url": "https://github.com/kongyijilafumi"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.4.0",
"core-js": "^3.31.1",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typedoc": "^0.23.15",
"typescript": "^4.8.2"
},
"repository": {
"type": "git",
"url": "https://github.com/kongyijilafumi/zh-chess.git"
},
"bugs": {
"url": "https://github.com/kongyijilafumi/zh-chess/issues"
},
"homepage": "https://github.com/kongyijilafumi/zh-chess#readme"
}