-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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": "p2p-goban",
"version": "1.0.0",
"description": "Connect to multiple peers and play/analyze on a shared Goban.",
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/yishn/p2p-goban.git"
},
"scripts": {
"build": "webpack --progress --mode production",
"watch": "webpack --progress --mode development --watch"
},
"keywords": [
"goban",
"go",
"weiqi",
"baduk",
"boardgame",
"game"
],
"author": "Yichuan Shen",
"license": "MIT",
"bugs": {
"url": "https://github.com/yishn/p2p-goban/issues"
},
"homepage": "https://github.com/yishn/p2p-goban",
"dependencies": {
"@sabaki/crdt-gametree": "^1.1.0",
"@sabaki/go-board": "^1.1.0",
"@sabaki/sgf": "^3.4.1",
"@sabaki/shudan": "^1.4.0",
"classnames": "^2.2.6",
"copy-text-to-clipboard": "^2.1.0",
"preact": "^8.5.1",
"signalhub": "^4.9.0",
"uuid": "^3.3.2",
"webrtc-swarm": "^2.9.0"
},
"devDependencies": {
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
}
}