-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 870 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 870 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
{
"name": "torrent-data-provider",
"displayName": "Torrent Data Provider",
"description": "Sources data from compataible Flashpoint torrents",
"version": "1.0.0",
"main": "./dist/extension.js",
"scripts": {
"build": "gulp build --color",
"watch": "gulp watch --color",
"package": "gulp package --color",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@fparchive/flashpoint-archive": "^0.13.2",
"@types/node": "18.x",
"@types/webtorrent": "^0.110.1",
"esbuild": "0.20.2",
"glob": "^11.0.2",
"gulp": "^4.0.2",
"gulp-zip": "^5.0.2",
"merge-stream": "^2.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@fparchive/multi-zip-reader": "^1.0.5",
"webtorrent": "^2.8.4"
}
}