-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.76 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
69
{
"name": "torrefy",
"version": "2.0.8",
"description": "An ESM package that uses Web Streams API to create v1, v2 or hybrid torrents in your web browser.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/**/*.ts",
"./dist/**/*.js"
],
"exports": {
"import": "./dist/index.js",
"browser": "./dist/index.umd.js",
"default": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Sec-ant/torrefy.git"
},
"homepage": "https://github.com/Sec-ant/torrefy",
"bugs": {
"url": "https://github.com/Sec-ant/torrefy/issues"
},
"keywords": [
"torrent",
"bittorrent",
"bencode",
"bdecode",
"metainfo",
"infohash",
"webtorrent",
"esm",
"webstream"
],
"author": "Ze-Zheng Wu",
"license": "MIT",
"scripts": {
"clean": "rm -fr ./dist/*.*s",
"lint": "eslint ./src",
"build": "npm run lint && npm run clean && webpack",
"serve": "http-server -c-1 dist",
"docs": "typedoc --plugin typedoc-plugin-markdown ./src/index.ts"
},
"devDependencies": {
"@types/uuid": "^9.0.0",
"@types/wicg-file-system-access": "^2020.9.5",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"eslint": "^8.29.0",
"http-server": "^14.1.1",
"mocha": "^10.1.0",
"ts-loader": "^9.4.2",
"tslib": "^2.4.1",
"typedoc": "^0.23.21",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"jssha": "github:Sec-ant/jsSHA#dd69d437ee912b95007a330f9afec7635f83271e",
"uuid": "^9.0.0",
"workbox-streams": "^6.5.4"
},
"peerDependencies": {
"@sec-ant/trie-map": "^1.1.5"
}
}