forked from sumitkolhe/jiosaavn-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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
{
"name": "jiosaavn-api",
"version": "1.0.0",
"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": "tsc && tsc-alias",
"format": "prettier --write \"./**/*.{js,ts,json}\"",
"lint": "eslint .",
"lint:fix": "bun run lint --fix",
"test": "bun run vitest run",
"test:ui": "bun run vitest --ui",
"deploy": "vercel deploy --prod",
"postinstall": "npx simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "bun run lint && bun run format"
},
"dependencies": {
"@hono/node-server": "^1.8.2",
"@hono/zod-openapi": "^0.9.8",
"@hono/zod-validator": "^0.2.0",
"@scalar/hono-api-reference": "^0.4.13",
"hono": "^4.1.3",
"node-forge": "^1.3.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@kolhe/eslint-config": "2.1.0",
"@types/bun": "^1.0.10",
"@types/node": "^20.11.30",
"@types/node-forge": "^1.3.11",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/ui": "^1.4.0",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.11.0",
"tsc-alias": "^1.8.8",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
}
}