forked from andremichelle/openDAW
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "opendaw",
"version": "0.0.0",
"private": true,
"license": "LGPL-3.0-or-later",
"engines": {
"node": ">=23"
},
"scripts": {
"cert": "bash ./scripts/cert.sh",
"clean": "bash ./scripts/clean.sh",
"build": "turbo build --output-logs=full",
"dev:studio": "turbo run dev --filter=@opendaw/app-studio",
"dev:lab": "turbo run dev --filter=@opendaw/lab",
"dev:nam-test": "turbo run dev --filter=@opendaw/nam-test",
"dev:yjs-server": "turbo run dev --filter=yjs-server",
"test": "turbo run test --concurrency=1",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"publish-sdk": "lerna publish"
},
"devDependencies": {
"@types/ssh2-sftp-client": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"lerna": "^8.2.3",
"prettier": "^3.6.2",
"ssh2-sftp-client": "^12.0.1",
"ts-node": "^10.1.0",
"turbo": "^2.5.5",
"typescript": "^5.9.2",
"vitest": "^3.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/andremichelle/opendaw"
},
"packageManager": "npm@11.4.2",
"workspaces": [
"packages/**/*"
]
}