-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.7 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
{
"name": "@ctrl/transmission",
"version": "0.0.0-placeholder",
"description": "TypeScript api wrapper for transmission using got",
"author": "Scott Cooper <scttcper@gmail.com>",
"license": "MIT",
"repository": "scttcper/transmission",
"keywords": [
"transmission",
"typescript"
],
"type": "module",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": [
"dist/src"
],
"sideEffects": false,
"scripts": {
"lint": "pnpm run '/^(lint:biome|lint:eslint)$/'",
"lint:biome": "biome check .",
"lint:eslint": "eslint .",
"lint:fix": "pnpm run '/^(lint:biome|lint:eslint):fix$/'",
"lint:eslint:fix": "eslint . --fix",
"lint:biome:fix": "biome check . --write",
"prepare": "npm run build",
"build": "tsc",
"build:docs": "typedoc",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --coverage --reporter=default --reporter=junit --outputFile=./junit.xml"
},
"dependencies": {
"@ctrl/magnet-link": "^4.0.2",
"@ctrl/shared-torrent": "^6.2.1",
"ofetch": "^1.4.1",
"type-fest": "^4.30.2",
"ufo": "^1.5.4",
"uint8array-extras": "^1.4.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ctrl/eslint-config-biome": "4.3.1",
"@ctrl/magnet-link": "^4.0.2",
"@ctrl/shared-torrent": "^6.2.1",
"@sindresorhus/tsconfig": "7.0.0",
"@types/node": "22.10.2",
"@vitest/coverage-v8": "2.1.8",
"p-wait-for": "5.0.2",
"typedoc": "0.27.5",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"release": {
"branches": [
"master"
]
},
"engines": {
"node": ">=18"
}
}