-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.63 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
{
"name": "apibay.org",
"type": "module",
"keywords": [
"apibay.org",
"apibay",
"thepiratebay api",
"thepiratebay",
"torrent api",
"torrent"
],
"description": "A TypeScript wrapper for the apibay.org API, providing an easy-to-use interface for fetching torrent data from The Pirate Bay.",
"version": "2.0.1",
"author": "Richard Mauritz <richard@codeit.ninja>",
"license": "MIT",
"homepage": "https://github.com/codeit-ninja/apibay#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/codeit-ninja/apibay.git"
},
"bugs": {
"url": "https://github.com/codeit-ninja/apibay/issues"
},
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"dev:run": "tsx --watch src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "changeset publish",
"version": "changeset version",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@changesets/cli": "^2.30.0",
"@types/node": "^25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260316.1",
"biome": "0.3.3",
"bumpp": "^11.0.1",
"tsdown": "^0.21.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.1"
},
"dependencies": {
"zod": "^4.3.6"
},
"packageManager": "pnpm@10.6.5"
}