-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 KB
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
{
"type": "module",
"name": "gamepeer-js",
"version": "0.0.17",
"description": "Peer-to-peer gaming JS library with a ton of capabilities",
"main": "dist/gamepeer-js.js",
"module": "dist/gamepeer-js.esm.js",
"files": [
"dist"
],
"homepage": "https://gamepeerjs.netlify.app/",
"repository": {
"type": "git",
"url": "https://github.com/EnzoVezzaro/gamepeer-js.git"
},
"bugs": {
"url": "https://github.com/EnzoVezzaro/gamepeer-js/issues"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/EnzoVezzaro"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm run build",
"docs": "npx jsdoc -c jsdoc.json && echo '/* /index.html 200' > docs/_redirects"
},
"keywords": [
"webrtc",
"peerjs",
"gaming",
"matchmaking",
"p2p"
],
"author": "Enzo Vezzaro",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.3",
"jsdoc": "^4.0.4",
"rollup": "^3.29.5"
},
"dependencies": {
"clean-jsdoc-theme": "^4.3.0",
"peerjs": "^1.4.7"
}
}