-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
68 lines (68 loc) · 1.66 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
67
68
{
"name": "wt-tracker",
"description": "High performance WebTorrent tracker",
"version": "0.0.1",
"license": "Apache-2.0",
"author": "Novage",
"homepage": "https://github.com/Novage/wt-tracker",
"exports": "./src/index.ts",
"types": "./src/index.ts",
"publishConfig": {
"exports": "lib/index.js",
"types": "lib/index.d.ts"
},
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=16.0.0"
},
"bin": {
"wt-tracker": "./bin/wt-tracker"
},
"keywords": [
"p2p",
"peer-to-peer",
"webrtc",
"torrent",
"bittorrent",
"bittorrent-tracker",
"webtorrent",
"tracker",
"websockets"
],
"scripts": {
"start": "node ./lib/run-uws-tracker.js",
"build": "npm run lint && npm run clean && npm run compile",
"compile": "tsc",
"lint": "eslint --ext .ts src",
"clean": "rimraf lib",
"watch": "tsc --watch",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:compile": "tsc --project tsconfig.test.json",
"test:clean": "rimraf test_dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Novage/wt-tracker.git"
},
"dependencies": {
"debug": "^4.3.5",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.44.0"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.8",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@vitest/coverage-v8": "^1.6.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"ts-mockito": "^2.6.1",
"typescript": "^5.5.2",
"vitest": "^1.6.0",
"ws": "^8.17.1"
}
}