-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 1.86 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
79
80
81
{
"name": "@gonetone/hoyowiki-api",
"version": "1.3.1",
"description": "A unofficial Node.js library for HoYoWiki API, can get the details of Genshin Impact items!",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"dist",
"README*.md"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src/*.ts",
"lint:fix": "eslint src/*.ts --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/GoneTone/node-hoyowiki-api.git"
},
"keywords": [
"miHoYo",
"HoYoLAB",
"HoYoWiki",
"HoYoWiki API",
"HoYoWiki Crawler",
"原神",
"Genshin Impact",
"Genshin",
"Character",
"Weapons",
"Artifacts",
"Enemies and Monsters",
"Teyvat's Resources",
"COGNOSPHERE",
"API",
"Crawler"
],
"author": {
"name": "張文相 Wenxiang Zhang (旋風之音 GoneTone)",
"email": "p29022716@gmail.com",
"url": "https://github.com/GoneTone"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/GoneTone/node-hoyowiki-api/issues"
},
"homepage": "https://github.com/GoneTone/node-hoyowiki-api",
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
},
"dependencies": {
"axios": "^0.27.2",
"tslib": "^2.4.0"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}