-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.76 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.76 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
66
67
68
69
70
{
"name": "@studiorack/cli",
"version": "3.0.6",
"description": "Audio project manager tool",
"type": "module",
"main": "./build/index.js",
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"bin": {
"studiorack": "./build/index.js"
},
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json",
"check": "npm run format && npm run lint && npm run build",
"clean": "rimraf coverage build tmp",
"dev": "tsx ./src/index.ts",
"dev:cli": "npm unlink -g && npm run build && npm link",
"format": "prettier . --write",
"lint": "eslint .",
"test": "npm run build && vitest run ./tests --hook-timeout=60000 --test-timeout=60000 --no-file-parallelism",
"test:watch": "vitest ./tests",
"prepare": "npm run build"
},
"keywords": [
"studiorack",
"project",
"manager",
"tool",
"vst",
"plugin",
"daw"
],
"author": "kmturley",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@open-audio-stack/core": "^0.1.47",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"ora": "^9.0.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/node": "^22.7.8",
"@types/ora": "^3.1.0",
"@vitest/coverage-v8": "^3.0.7",
"eslint": "^9.12.0",
"execa": "^9.5.2",
"globals": "^15.2.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"tsx": "^4.10.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"vitest": "^3.0.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/studiorack/studiorack-cli.git"
},
"bugs": {
"url": "https://github.com/studiorack/studiorack-cli/issues"
},
"homepage": "https://github.com/studiorack/studiorack-cli#readme"
}