-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "nyaa-si",
"version": "2.2.0",
"description": "unofficial api wrapper for nyaa.si ",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"preview": "vite preview",
"prepublish": "pnpm build",
"test": "vitest",
"coverage": "vitest run --coverage",
"local": "ts-node test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sayeed205/nyaa-api.git"
},
"keywords": [
"nyaa",
"torrent",
"anime",
"manga",
"api"
],
"author": "Sayed Ahmed",
"license": "MIT",
"bugs": {
"url": "https://github.com/sayeed205/nyaa-api/issues"
},
"homepage": "https://github.com/sayeed205/nyaa-api#readme",
"devDependencies": {
"@rollup/plugin-typescript": "11.1.6",
"@types/node": "20.11.7",
"@vitest/coverage-v8": "^1.2.2",
"rimraf": "5.0.5",
"rollup-plugin-typescript-paths": "1.5.0",
"ts-node": "^10.9.2",
"tslib": "2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "3.7.2",
"vitest": "1.2.2"
},
"dependencies": {
"cheerio": "1.0.0-rc.12"
}
}