forked from notdeltaxd/Amazon-Music-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.49 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
{
"name": "amazon-music-api",
"version": "1.0.0",
"description": "Unofficial Amazon Music API",
"type": "module",
"license": "MIT",
"author": "NOT DELTA (@notdeltaxd)",
"repository": {
"type": "git",
"url": "https://github.com/notdeltaxd/Amazon-Music-API.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./dist/server.js",
"types": "./dist/server.d.ts"
}
},
"scripts": {
"build": "tsup",
"prestart": "tsup",
"start": "bun dist/server.js",
"dev": "bun run --watch src/server.ts",
"format": "prettier --write .",
"test": "vitest run",
"test:ui": "vitest --ui"
},
"dependencies": {
"@hono/node-server": "^1.19.6",
"@hono/zod-openapi": "^1.1.4",
"@hono/zod-validator": "^0.7.4",
"@scalar/hono-api-reference": "^0.9.24",
"axios": "^1.13.2",
"hono": "^4.10.6",
"node-forge": "^1.3.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/bun": "^1.3.2",
"@types/node": "^24.10.1",
"@types/node-forge": "^1.3.14",
"@vitest/coverage-v8": "^4.0.10",
"@vitest/ui": "^4.0.10",
"prettier": "^3.6.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.10"
}
}