forked from CoderLine/alphaTab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 4.17 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@coderline/alphatab",
"version": "1.4.0",
"description": "alphaTab is a music notation and guitar tablature rendering library",
"keywords": [
"guitar",
"music-notation",
"music-sheet",
"html5",
"svg",
"guitar-tablature"
],
"homepage": "https://alphatab.net",
"bugs": {
"url": "https://github.com/coderline/alphaTab/issues"
},
"author": "Daniel Kuschny",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/coderline/alphaTab"
},
"main": "dist/alphaTab.js",
"module": "dist/alphaTab.mjs",
"typings": "dist/alphaTab.d.ts",
"exports": {
".": {
"import": "./dist/alphaTab.mjs",
"require": "./dist/alphaTab.js",
"types": "./dist/alphaTab.d.ts"
},
"./webpack": {
"import": "./dist/alphaTab.webpack.mjs",
"require": "./dist/alphaTab.webpack.js",
"types": "./dist/alphaTab.webpack.d.ts"
},
"./vite": {
"import": "./dist/alphaTab.vite.mjs",
"require": "./dist/alphaTab.vite.js",
"types": "./dist/alphaTab.vite.d.ts"
},
"./soundfont/*": "./dist/soundfont/*",
"./font/*": "./dist/font/*"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"clean": "rimraf dist && rimraf .rollup.cache",
"lint": "eslint .",
"start": "node scripts/setup-playground.js && npm run generate-typescript && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript -w",
"generate-typescript": "rimraf src/generated && tsx src.compiler/typescript/AlphaTabGenerator.ts",
"generate-csharp": "npm run generate-typescript && tsx src.compiler/csharp/CSharpTranspiler.ts --outDir dist/lib.csharp",
"generate-kotlin": "npm run generate-typescript && tsx src.compiler/kotlin/KotlinTranspiler.ts --outDir dist/lib.kotlin",
"build": "npm run generate-typescript && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"build-csharp": "npm run generate-csharp && cd src.csharp && dotnet build -c Release",
"build-kotlin": "npm run generate-kotlin && cd src.kotlin/alphaTab && gradlew assembleRelease",
"test": "mocha",
"test-csharp": "cd src.csharp && dotnet test -c Release",
"test-kotlin": "cd src.kotlin/alphaTab && gradlew testReleaseUnitTest --info",
"test-accept-reference": "tsx scripts/accept-new-reference-files.ts"
},
"devDependencies": {
"@coderline/alphaskia": "^2.3.120",
"@coderline/alphaskia-windows": "^2.3.120",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/chai": "^5.0.0",
"@types/cors": "^2.8.17",
"@types/mocha": "^10.0.9",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"assert": "^2.1.0",
"chai": "^5.1.1",
"concurrently": "^9.0.1",
"cors": "^2.8.5",
"eslint": "^9.12.0",
"express": "^4.21.1",
"fs-extra": "^11.2.0",
"html-webpack-plugin": "^5.6.0",
"mocha": "^10.7.3",
"multer": "^1.4.5-lts.1",
"opener": "^1.5.2",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-license": "^3.5.3",
"terser": "^5.34.1",
"tslib": "^2.7.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"files": [
"/dist/alphaTab*.js",
"/dist/alphaTab*.mjs",
"/dist/alphaTab*.ts",
"/dist/font/Bravura.*",
"/dist/font/Bravura*.txt",
"/dist/font/*.txt",
"/dist/soundfont/*",
"LICENSE.header"
],
"dependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.7.5",
"@types/opener": "^1.4.3"
}
}