-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 998 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 998 Bytes
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
{
"name": "interconnected_node",
"version": "0.0.19",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prettier:write": "npx prettier --write **/*.{js,jsx,ts,tsx,json} && npx prettier --write *.{js,jsx,ts,tsx,json}",
"lint": "tsc --noEmit && npx eslint --ext .js,.jsx,.ts,.tsx ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tale152/interconnected_node.git"
},
"author": "Alessandro Talmi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tale152/interconnected_node/issues"
},
"homepage": "https://github.com/Tale152/interconnected_node#readme",
"devDependencies": {
"@types/node": "^18.8.0",
"@types/simple-peer": "^9.11.5",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"files": [
"dist/**/*"
],
"dependencies": {
"socket.io-client": "^4.5.3"
}
}