-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.15 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.15 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
{
"name": "mal-api-ts",
"version": "0.1.1",
"description": "mal-api-ts is an api wrapper for the myanimelist api that makes it fast, easy and fun to interact with mal. supports all endpoints, has interfaces for every response, and most importantly, saves you a lot of time.",
"author": "Shikiiii <shikii123@proton.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Shikiiii/mal-api.ts.git"
},
"bugs": {
"url": "https://github.com/Shikiiii/mal-api.ts/issues"
},
"homepage": "https://github.com/Shikiiii/mal-api.ts#readme",
"type": "module",
"main": "dist/mal.js",
"types": "dist/mal.d.ts",
"scripts": {
"build": "tsc && tsc-alias",
"prepublishOnly": "npm run build"
},
"keywords": [],
"devDependencies": {
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.13.10",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.11",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"dependencies": {
"axios": "^1.8.2",
"jsonwebtoken": "^9.0.2"
}
}