-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.64 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.64 KB
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
{
"name": "pandora-api",
"version": "1.0.0",
"description": "Unofficial Pandora API",
"type": "module",
"license": "MIT",
"author": "NOT DELTA",
"repository": {
"type": "git",
"url": "https://github.com/notdeltaxd/Pandora-API.git"
},
"bugs": {
"url": "https://github.com/notdeltaxd/Pandora-API/issues"
},
"homepage": "https://github.com/notdeltaxd/Pandora-API#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"scripts": {
"dev": "bun run --hot src/server.ts",
"start": "bun dist/server.js",
"prebuild": "rimraf dist",
"build": "tsc && tsc-alias",
"format": "prettier --write \"./**/*.{js,ts,json}\"",
"lint": "eslint .",
"lint:fix": "bun run lint --fix",
"test": "vitest run",
"test:ui": "vitest --ui"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.51.0",
"@hono/node-server": "^1.19.5",
"@hono/zod-openapi": "^1.1.3",
"@hono/zod-validator": "^0.7.4",
"@scalar/hono-api-reference": "^0.9.21",
"hono": "^4.9.10",
"node-forge": "^1.3.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/bun": "^1.2.23",
"@types/node": "^24.7.1",
"@types/node-forge": "^1.3.14",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.37.0",
"rimraf": "^6.0.1",
"eslint-plugin-prettier": "^5.5.4",
"typescript-eslint": "^8.18.2",
"prettier": "^3.6.2",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}