-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 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
{
"name": "@litert/bencode",
"version": "0.2.0",
"description": "A bencode decode/encode library based on Node.js.",
"main": "./libs/index.js",
"scripts": {
"prepublishOnly": "npm run rebuild",
"build": "echo Using TypeScript && tsc -v && tsc -p .",
"build-watch": "echo Using TypeScript && tsc -v && tsc -w -p .",
"rebuild": "npm run clean && npm run lint && npm run build",
"test": "li-test lib",
"clean": "rm -rf lib test examples",
"typecheck": "tsc -p . --noEmit",
"lint": "./utils/eslint.sh"
},
"keywords": [
"litert",
"lrt",
"torrent",
"bencode"
],
"author": "Angus.Fenying <fenying@litert.org> (https://fenying.net)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/litert/bencode.js.git"
},
"bugs": {
"url": "https://github.com/litert/bencode.js/issues"
},
"homepage": "https://github.com/litert/bencode.js#readme",
"types": "./libs/index.d.ts",
"typings": "./libs/index.d.ts",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@litert/eslint-plugin-rules": "^0.2.4",
"@litert/test-cli": "^0.1.1",
"@types/node": "^22.5.1",
"husky": "^9.1.5",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=16.0.0"
}
}