-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.53 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
{
"name": "@studiorack/cli",
"version": "2.0.2",
"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",
"clean": "rimraf coverage build tmp",
"dev": "tsx ./src/index.ts",
"dev:cli": "rm $(which studiorack) && npm run build && npm link",
"format": "prettier . --write",
"lint": "eslint .",
"test": "vitest run ./tests --hook-timeout=60000 --test-timeout=60000 --no-file-parallelism",
"prepare": "npm run build"
},
"keywords": [
"studiorack",
"project",
"manager",
"tool",
"vst",
"plugin",
"daw"
],
"author": "kmturley",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@studiorack/core": "^2.0.13",
"cli-table3": "^0.6.5",
"commander": "^12.1.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/node": "^20.12.12",
"eslint": "^9.12.0",
"globals": "^15.2.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"tsx": "^4.10.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0",
"vitest": "^1.6.0"
},
"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"
}