-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.54 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
{
"name": "@featherbear/presonus-studiolive-api",
"version": "1.8.0",
"description": "Unofficial PreSonus StudioLive III Network Control API",
"main": "./dist/api.cjs",
"module": "./dist/api.mjs",
"exports": {
".": {
"types": "./dist/types/api.d.ts",
"import": "./dist/api.mjs",
"require": "./dist/api.cjs"
},
"./simple": {
"types": "./dist/types/simple/index.d.ts",
"import": "./dist/simple/index.mjs",
"require": "./dist/simple/index.cjs"
}
},
"scripts": {
"build": "rimraf dist && tsdown && tsc -p tsconfig.types.json",
"lint": "biome lint src/",
"lint:fix": "biome lint --write src/",
"format": "biome format --write src/",
"run": "sucrase-node run.ts | bunyan",
"run:debug": "cross-env DEBUG=1 sucrase-node run.ts | bunyan",
"test": "npm run build && vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/featherbear/presonus-studiolive-api.git"
},
"author": "featherbear",
"license": "MIT",
"bugs": {
"url": "https://github.com/featherbear/presonus-studiolive-api/issues"
},
"homepage": "https://featherbear.cc/presonus-studiolive-api",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"bunyan": "^1.8.15",
"queue": "^6"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@eslint/js": "^9.33.0",
"@types/bunyan": "^1.8.11",
"@types/node": "22",
"cross-env": "^10.0.0",
"rimraf": "^6.0.1",
"sucrase": "^3.35.0",
"tsdown": "^0.21.7",
"typescript": "^5.9.2",
"vitest": "^4.1.4"
}
}