-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "gobang",
"version": "1.0.0",
"description": "gobang game",
"author": "HaoLe Zheng",
"license": "MIT",
"keywords": [
"gobang",
"连珠",
"五子棋",
"五子棋对战",
"五子棋人机对战"
],
"main": "./dist/gobang.min.js",
"exports": {
"default": "./dist/gobang.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mumuy/gobang.git"
},
"bugs": {
"url": "https://github.com/mumuy/gobang/issues"
},
"files":[
"dist"
],
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"@babel/runtime": "^7.24.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^3.29.4"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -wc"
},
"homepage": "https://passer-by.com/gobang/",
"directories": {}
}