-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.4 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.4 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "subsonic-api",
"version": "3.2.0",
"description": "Subsonic and OpenSubsonic Client for Node.js and browsers",
"license": "MIT",
"author": "Henry Gressmann <mail@henrygressmann.de>",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/explodingcamera/subsonic-api.git"
},
"keywords": [
"subsonic",
"api",
"music",
"streaming",
"media",
"player",
"client",
"typescript"
],
"homepage": "https://github.com/explodingcamera/subsonic-api",
"files": [
"lib",
"README.md",
"LICENSE.md"
],
"exports": {
".": "./lib/index.js"
},
"scripts": {
"build": "bun run build:js && bun run build:types",
"build:js": "esbuild ./src/index.ts --minify --target=es2022 --outdir=lib --external:node:crypto --format=esm --bundle",
"build:types": "tsc -p tsconfig.build.json",
"release": "release-it",
"preversion": "npm run build",
"format": "biome format ./src --write",
"lint": "biome check ./src"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"bun-types": "^1.3.10",
"esbuild": "^0.27.3",
"release-it": "^19.2.4",
"typescript": "^5.9.3"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
}
},
"engines": {
"node": ">=18"
},
"engineStrict": false,
"trustedDependencies": [
"@biomejs/biome",
"esbuild"
]
}