-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "jiosaavn",
"type": "module",
"description": "🎵 An Unofficial wrapper for the JioSaavn API.",
"scripts": {
"dev": "bun run --hot src/index.ts",
"type-check": "tsc --noEmit",
"lint:check": "biome check",
"lint": "biome check --write",
"prepare": "husky"
},
"dependencies": {
"@biomejs/biome": "^2.4.4",
"@scalar/hono-api-reference": "^0.9.44",
"crypto-js": "^4.2.0",
"entities": "^7.0.1",
"hono": "^4.12.1",
"hono-rate-limiter": "^0.5.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260228.0",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@total-typescript/ts-reset": "^0.6.1",
"@types/crypto-js": "^4.2.2",
"bun-types": "^1.3.9",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"wrangler": "^4.67.0"
},
"lint-staged": {
"*": [
"biome format --write",
"biome check"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}