-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@boardgame.io/p2p",
"version": "0.4.4",
"description": "Experimental peer-to-peer multiplayer transport for boardgame.io",
"repository": {
"type": "git",
"url": "git+https://github.com/boardgameio/p2p.git"
},
"keywords": [
"peerjs",
"p2p",
"multiplayer",
"boardgame.io",
"webrtc"
],
"author": "Chris Swithinbank <[email protected]> (http://chrisswithinbank.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/boardgameio/p2p/issues"
},
"homepage": "https://github.com/boardgameio/p2p#readme",
"funding": [
"https://github.com/boardgameio/boardgame.io?sponsor=1",
{
"type": "opencollective",
"url": "https://opencollective.com/boardgameio"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"prettier:check": "prettier --list-different \"{src,test}/**/*.ts\"",
"prettier:write": "prettier --write \"{src,test}/**/*.ts\"",
"prebuild": "npm run prettier:check",
"build": "tsc -b src",
"prerelease": "npm run test && npm run build",
"release": "standard-version -s",
"prepublishOnly": "npm run build",
"pretest": "npm run prettier:check && eslint .",
"test": "jest --coverage --collectCoverageFrom=\"src/**/*.ts\""
},
"dependencies": {
"peerjs": "^1.3.2",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"peerDependencies": {
"boardgame.io": ">=0.49.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"boardgame.io": "^0.50.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"prettier": "^2.4.0",
"standard-version": "^9.3.1",
"typescript": "^4.4.3"
}
}