-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.25 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.25 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
{
"name": "anilist",
"version": "0.12.3",
"description": "An UNOFFICIAL wrapper for the anilist api written in typescript",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=18"
},
"files": [
"./dist/"
],
"scripts": {
"lint": "eslint src/**/*.ts",
"build": "rm -rf dist && tsc",
"test": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Didas-git/anilist-wrapper.git"
},
"keywords": [
"anilist",
"wrapper",
"api",
"anilist-api",
"anilist-wrapper"
],
"author": "DidaS",
"license": "MIT",
"bugs": {
"url": "https://github.com/Didas-git/anilist-wrapper/issues"
},
"homepage": "https://github.com/Didas-git/anilist-wrapper#readme",
"dependencies": {
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^20.8.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-plugin-tsdoc": "^0.2.17",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}