-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.46 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
{
"name": "clap-peer",
"version": "0.1.0",
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"./index.js",
"./lib",
"./types"
],
"scripts": {
"types": "tsc -p types/tsconfig.json",
"prettier": "prettier lib/**/*.js --check",
"prettier:fix": "prettier lib/**/**.js -w",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "husky",
"release": "release-it"
},
"author": "Sobirov Diyorbek <[email protected]>",
"license": "MIT",
"description": "P2P data transmission library for direct node communication over TCP",
"devDependencies": {
"typescript": "^5.6.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@types/node": "^22.9.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"husky": "^9.1.4",
"prettier": "^3.3.3",
"release-it": "^17.10.0"
},
"overrides": {
"eslint": "^9.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DIY0R/clap-peer.git"
},
"homepage": "https://github.com/DIY0R/clap-peer",
"bugs": {
"url": "https://github.com/DIY0R/clap-peer/issues"
},
"keywords": [
"peer-to-peer",
"p2p",
"tcp"
],
"npm": {
"publish": true
},
"publishConfig": {
"access": "public"
},
"private": false,
"dependencies": {}
}