-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.67 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
{
"name": "enka-network-api",
"version": "4.6.2",
"description": "Enka-network API wrapper for Genshin Impact.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"example": "example",
"lib": "src"
},
"scripts": {
"install": "node scripts/install.js",
"lint": "npx eslint . --config .eslintrc.json --ext .js,.jsx,.cjs,.mjs,.ts,.tsx --ignore-path .eslintignore",
"lint:fix": "npx eslint . --config .eslintrc.json --ext .js,.jsx,.cjs,.mjs,.ts,.tsx --ignore-path .eslintignore --fix",
"build": "node scripts/clean.js && npx tsc",
"build:debug": "node scripts/clean.js && npx tsc --sourceMap",
"prepublishOnly": "npm run build"
},
"keywords": [
"nodejs",
"wrapper",
"node",
"node-js",
"nodejs-modules",
"wrapper-api",
"wrapper-library",
"genshin",
"genshin-impact",
"genshin-api",
"genshin-artifacts",
"enkanetwork",
"enka-network",
"enka"
],
"author": "yuko1101 (https://github.com/yuko1101)",
"repository": {
"type": "git",
"url": "git+https://github.com/yuko1101/enka-network-api.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yuko1101/enka-network-api/issues"
},
"homepage": "https://enka-network-api.vercel.app",
"dependencies": {
"axios": "^1.4.0",
"config_file.js": "^1.3.0",
"enka-system": "^0.3.4",
"unzip-stream": "^0.3.1"
},
"devDependencies": {
"@types/unzip-stream": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.44.0",
"ts-node": "^10.9.1",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=16.0.0"
}
}