-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 765 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 765 Bytes
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
{
"name": "apo2cdsp-parametriceq",
"version": "1.0.0",
"description": "CLI tool to parse EqualizerAPO parametric EQ filter data and convert it to JSON format",
"main": "dist/apo2cdsp",
"bin": {
"apo2cdsp": "dist/apo2cdsp"
},
"scripts": {
"build": "bun build --compile --minify --target bun index.ts --outfile dist/apo2cdsp",
"dev": "bun index.ts",
"check": "biome check",
"check:fix": "biome check --fix",
"check:fix-unsafe": "biome check --fix --unsafe",
"typecheck": "bun tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@biomejs/biome": "^2.3.11",
"chalk": "^5.6.2"
},
"author": "OnCloud",
"license": "MIT"
}