-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.42 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
53
54
55
56
{
"name": "@shineiichijo/marika",
"version": "3.0.1",
"description": "An API wrapper for the unofficial MyAnimeList API jikan.moe v4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"axios": "^1.5.0",
"axios-cache-interceptor": "^1.3.0"
},
"files": [
"dist"
],
"scripts": {
"build": "yarn rimraf dist/ && yarn tsc && yarn docs",
"lint": "eslint . --ignore-path .gitignore --ext .ts",
"lint:fix": "eslint . --ignore-path .gitignore --ext .ts --fix",
"format": "yarn prettier --write --config .prettierrc.json \"src/**/*.ts\"",
"prepack": "yarn build",
"docs": "yarn typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuckyYam/Marika.git"
},
"keywords": [
"anime",
"manga",
"anime-character",
"jikan",
"jikan-moe",
"myanimelist",
"MAL"
],
"author": {
"name": "Lucky Yambem",
"url": "https://github.com/LuckyYam"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/LuckyYam/Marika/issues"
},
"homepage": "https://github.com/LuckyYam/Marika",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
}
}