-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
57
58
59
60
61
62
63
64
65
66
{
"name": "mangadex-full-api",
"version": "6.0.0",
"description": "A MangaDex api based around the official API.",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"lint": "eslint ./src ./scripts --ext .ts,.mjs,.cjs,.js",
"build:schema": "node ./scripts/build-schema.mjs",
"build:tsup": "node ./scripts/build-tsup.mjs",
"build": "npm run build:schema && npm run build:tsup",
"prepublish": "npm run build",
"docs": "typedoc",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"engines": {
"node": ">=19.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/md-y/mangadex-full-api.git"
},
"keywords": [
"mangadex",
"api",
"manga",
"anime",
"manwha",
"manhua"
],
"author": "m;dy",
"license": "MIT",
"bugs": {
"url": "https://github.com/md-y/mangadex-full-api/issues"
},
"homepage": "https://md-y.github.io/mangadex-full-api/",
"devDependencies": {
"@microsoft/tsdoc": "^0.14.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"dotenv": "^16.3.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.6.1",
"prettier": "^2.8.1",
"simple-oauth-redirect": "^1.1.0",
"swagger-typescript-api": "^12.0.2",
"ts-jest": "^29.1.1",
"tsup": "^6.7.0",
"typedoc": "^0.24.7",
"typedoc-plugin-missing-exports": "^2.0.0",
"typescript": "^4.9.5"
}
}