-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (41 loc) · 2.2 KB
/
package.json
File metadata and controls
52 lines (41 loc) · 2.2 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
{
"name": "@coderline/alphatab-monorepo",
"version": "1.9.0",
"description": "Monorepo for alphaTab and its related packages",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"lint-ci": "npm run lint --workspaces --if-present -- --reporter=github",
"typecheck": "npm run typecheck --workspaces --if-present",
"dev": "npm run dev --workspace=packages/playground",
"build-language-server": "npm run build --workspace=packages/lsp",
"dev-language-server": "npm run dev --workspace=packages/lsp",
"dev-vscode": "concurrently \"npm run dev --workspace=packages/lsp\" \"npm run dev --workspace=packages/vscode\"",
"update-version": "node scripts/update-version.mjs",
"generate-typescript": "npm run generate-typescript --workspace=packages/alphatab",
"build": "npm run build --workspace=packages/alphatab",
"test": "npm run test --workspace=packages/alphatab",
"build-web": "npm run build && npm run build-webpack && npm run build-vite",
"test-web": "npm run test && npm run test-webpack && npm run test-vite",
"build-csharp": "npm run generate-typescript && npm run build --workspace=packages/csharp",
"test-csharp": "npm run test --workspace=packages/csharp",
"build-kotlin": "npm run generate-typescript && npm run build --workspace=packages/kotlin",
"test-kotlin": "npm run test --workspace=packages/kotlin",
"build-vite": "npm run build --workspace=packages/vite",
"test-vite": "npm run test --workspace=packages/vite",
"build-webpack": "npm run build --workspace=packages/webpack",
"test-webpack": "npm run test --workspace=packages/webpack",
"build-monaco": "npm run build --workspace=packages/monaco",
"nightly-check": "node ./scripts/nightly.mts --mode check",
"nightly-pack": "node ./scripts/nightly.mts --mode pack",
"nightly-publish": "node ./scripts/nightly.mts --mode publish"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}