-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.28 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.28 KB
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
{
"name": "sloaix-node-bencode",
"version": "0.1.7",
"description": "Bencode encoding and decoding, with both library and CLI versions available. The CLI version can decode bencode-formatted data from files or strings and output the result in JSON format.",
"keywords": [
"bencode",
"bencoding",
"bittorrent"
],
"homepage": "https://github.com/Sloaix/node-bencode",
"repository": {
"type": "git",
"url": "https://github.com/Sloaix/node-bencode"
},
"author": "Sloaix",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"bin": {
"bencode": "./dist/index.cjs"
},
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "rimraf ./dist && unbuild",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.4",
"jest": "^29.6.2",
"rimraf": "^5.0.1",
"sloaix-node-bencode": "^0.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"unbuild": "^1.2.1"
},
"unbuild": {
"rollup": {
"esbuild": {
"minify": true
}
}
},
"dependencies": {
"commander": "^11.0.0"
},
"engines": {
"node": ">=16"
}
}