-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "rtc.io",
"version": "0.1.0",
"description": "A P2P connection library aimed to make RTCPeerConnections easier to use",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"prettier": {
"printWidth": 120,
"arrowParens": "always",
"singleQuote": true,
"quoteProps": "consistent"
},
"scripts": {
"build": "rimraf dist/ && tsc",
"prepare": "husky install",
"lint": "prettier --ignore-path .gitignore . --write && eslint --ignore-path .gitignore . --fix",
"prepack": "npm run lint && npm run build",
"develop": "rimraf dist/ && tsc --watch"
},
"keywords": [
"WebRTC",
"RTCPeerConnection",
"P2P"
],
"author": "Devin Bidwell",
"email": "dbidwell94@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"husky": "^7.0.0",
"jest": "^27.5.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"socket.io-client": "^4.4.1",
"uuid": "^8.3.2"
}
}