This repository has been archived by the owner on Jul 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.48 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
{
"name": "starrail-infinity",
"version": "0.1.1",
"description": "API proxy to fetch and interact with data from Honkai: Star Rail",
"module": "index.ts",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "bun run ./src/index.ts",
"dev": "bun run --watch ./src/index.ts",
"clean": "bunx rimraf dist",
"prebuild": "bun run clean",
"build": "bun run build.ts && npm run build:declaration",
"build:declaration": "tsc --project tsconfig.types.json",
"lint": "bunx eslint . --fix"
},
"keywords": ["Honkai: Star Rail", "hsr", "starrail", "hoyoverse", "API", "Proxy", "Typescript", "Bun", "Elysia"],
"author": "Isaac Yong <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/infinia-yzl/starrail-infinity.git"
},
"bugs": {
"url": "https://github.com/infinia-yzl/starrail-infinity/issues"
},
"homepage": "https://github.com/infinia-yzl/starrail-infinity#readme",
"dependencies": {
"@elysiajs/swagger": "^0.7.2",
"camelcase-keys": "^9.0.0",
"elysia": "^0.7.12",
"rimraf": "^5.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"bun-types": "^1.0.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "3.0.3",
"typescript": "^5.2.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"files": [
"dist/**/*",
"dist/types/**/*"
]
}