forked from genshin-kit/genshin-kit-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "@genshin-kit/core",
"version": "2.6.0",
"description": "An API wrapper for fetching player data of Genshin Impact from any servers.",
"main": "lib/index.js",
"files": [
"lib"
],
"typings": "lib/index.d.ts",
"repository": {
"url": "https://github.com/genshin-kit/genshin-kit.git",
"directory": "packages/core"
},
"author": "Dragon-Fish <824399619@qq.com>",
"license": "Apache-2.0",
"scripts": {
"build": "yarn clear && tsc",
"dev": "tsc --watch",
"clear": "rimraf ./lib ./dist",
"bump": "yarn lint && yarn test && yarn pretty && yarn build && bump",
"lint": "eslint ./src",
"test": "mocha test/**/*.ts",
"pretty": "prettier --write ./src ./sample"
},
"dependencies": {
"axios": "^0.24.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.18.19",
"@types/node": "^16.11.7",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"keywords": [
"api",
"genshin-impact",
"hoyolab",
"player-data"
]
}