forked from Api-Wrappers/anilist-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 845 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": "@tdanks2000/anilist-wrapper",
"version": "1.1.0",
"description": "A wrapper for the Anilist graphQL api",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tdanks2000/anilistwrapper"
},
"keywords": [
"anilist",
"anilistWrapper",
"api wrapper",
"node",
"typescript"
],
"engines": {
"node": ">=16"
},
"author": "people",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"release": "yarn version && npm publish",
"preversion": "tsc"
},
"devDependencies": {
"@types/node": "^20.11.20",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"abort-controller": "^3.0.0",
"tslib": "^2.6.2"
}
}