forked from CoderLine/alphaTab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (31 loc) · 1.62 KB
/
package.json
File metadata and controls
39 lines (31 loc) · 1.62 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
{
"name": "@coderline/alphatab-monorepo",
"version": "1.7.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",
"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"
}
}