-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathpackage.json
74 lines (74 loc) · 2.12 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "jiosaavn-api",
"version": "0.0.6",
"description": "Unofficial JioSaavn API",
"type": "module",
"license": "MIT",
"repository": "https://github.com/sumitkolhe/jiosaavn-api",
"author": "Sumit Kolhe",
"main": "dist/server.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"sideEffects": false,
"imports": {
"#modules/*": {
"types": "./src/modules/*/index.d.ts",
"production": "./dist/modules/*/index.js",
"default": "./src/modules/*/"
},
"#common/*": {
"types": "./src/common/*/index.d.ts",
"production": "./dist/common/*/index.js",
"default": "./src/common/*/"
}
},
"scripts": {
"dev": "bun run --hot src/server.ts",
"start": "bun dist/server.js",
"build": "rm -rf dist && tsc && tsc-alias",
"format": "prettier --write \"./**/*.{js,ts,json}\"",
"lint": "eslint .",
"lint:fix": "bun run lint --fix",
"test": "vitest run",
"test:ui": "vitest --ui",
"deploy": "wrangler deploy",
"release": "bun run test && bun run changelogen --release --push",
"postinstall": "npx simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "bun run lint && bun run format",
"commit-msg": "bun run commitlint --edit $1"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"@hono/zod-openapi": "^0.18.3",
"@hono/zod-validator": "^0.4.2",
"@scalar/hono-api-reference": "^0.5.166",
"hono": "^4.6.16",
"node-forge": "^1.3.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@kolhe/eslint-config": "2.2.6",
"@types/bun": "^1.1.17",
"@types/node": "^22.10.7",
"@types/node-forge": "^1.3.11",
"@vitest/coverage-v8": "^3.0.1",
"@vitest/ui": "^3.0.1",
"changelogen": "^0.5.7",
"eslint": "^9.18.0",
"eslint-plugin-prettier": "^5.2.2",
"prettier": "^3.4.2",
"simple-git-hooks": "^2.11.1",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.3",
"vitest": "^3.0.1",
"wrangler": "^3.103.1"
}
}