-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 929 Bytes
/
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
{
"name": "anilist-api-client",
"version": "1.1.1",
"description": "A TypeScript-based wrapper for interacting with anime and manga data from AniList.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "node test.js",
"prepare": "npm run build"
},
"keywords": [
"anime",
"manga",
"wrapper",
"typescript",
"anilist",
"API"
],
"author": "gonzyui",
"license": "MIT",
"dependencies": {
"axios": "^1.7.9"
},
"devDependencies": {
"typescript": "^5.7.2",
"@types/node": "^20.17.10",
"ts-node": "^10.9.2"
},
"repository": {
"type": "git",
"url": "https://github.com/gonzyui/Anilist-API-Client.git"
},
"bugs": {
"url": "https://github.com/gonzyui/Anilist-API-Client/issues"
},
"homepage": "https://github.com/gonzyui/Anilist-API-Client#readme",
"engines": {
"node": ">=16.0.0"
}
}