-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 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
{
"name": "gaana-api",
"version": "1.0.0",
"description": "Production-ready Gaana API built with Bun, Hono & TypeScript",
"type": "module",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/notdeltaxd/Gaana-API.git"
},
"homepage": "https://github.com/notdeltaxd/Gaana-API",
"keywords": [
"gaana",
"api",
"music",
"streaming",
"hono",
"bun",
"typescript",
"rest-api"
],
"author": "notdeltaxd",
"license": "Apache-2.0",
"scripts": {
"dev": "bun run --hot src/index.ts",
"build": "tsc",
"start": "bun run dist/index.js",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"@hono/node-server": "^1.19.6",
"hono": "^4.10.5",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/bun": "^1.3.2",
"@types/node": "^24.10.1",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
}
}