-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.02 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "anilibria-api-wrapper",
"version": "1.0.7",
"description": "This library is not an official wrapper over anilibria api",
"scripts": {
"start": "node dist/main.js",
"build:rollup": "rollup --config rollup.config.js --configPlugin typescript --bundleConfigAsCjs",
"build:defs": "tsc",
"build": "npm run build:rollup && npm run build:defs",
"lint": "eslint --fix ./src/**/*.{js,ts}",
"test": "jest --passWithNoTests"
},
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/esm/bundle.mjs"
},
"require": {
"types": "./types/index.d.ts",
"default": "./dist/cjs/bundle.cjs"
},
"types": "./types/index.d.ts",
"default": "./dist/esm/bundle.cjs"
}
},
"main": "./dist/cjs/bundle.cjs",
"module": "./dist/esm/bundle.js",
"type": "module",
"types": "./types/index.d.ts",
"keywords": [
"anilibria",
"anime",
"api",
"nodejs",
"typescript"
],
"author": "Averito",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
},
"dependencies": {
"axios": "^1.4.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.0",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rollup": "^3.21.4",
"rollup-plugin-typescript-paths": "^1.4.0",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Averito/AnilibriaApi.git"
},
"bugs": {
"url": "https://github.com/Averito/AnilibriaApi/issues",
"email": "avenantmar@gmail.com"
},
"homepage": "https://github.com/Averito/AnilibriaApi#readme"
}