-
Notifications
You must be signed in to change notification settings - Fork 254
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.87 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.87 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@coderline/alphatab-vite",
"version": "1.9.0",
"description": "A plugin for Vite to bundle alphaTab into your webapps.",
"keywords": [
"guitar",
"music-notation",
"music-sheet",
"html5",
"svg",
"guitar-tablature",
"vite"
],
"homepage": "https://alphatab.net",
"bugs": {
"url": "https://github.com/coderline/alphaTab/issues"
},
"author": "Daniel Kuschny",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/coderline/alphaTab.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/alphaTab.vite.d.ts",
"require": "./dist/alphaTab.vite.cjs",
"import": "./dist/alphaTab.vite.mjs"
},
"./*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.cjs",
"import": "./dist/*.mjs"
}
},
"scripts": {
"clean": "rimraf dist",
"lint": "biome lint",
"typecheck": "tsc --noEmit",
"build": "vite build",
"test": "mocha"
},
"dependencies": {
"magic-string": "^0.30.21",
"vite": "^7.3.2"
},
"engines": {
"node": ">=20.19.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@microsoft/api-extractor": "^7.57.7",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.0",
"assert": "^2.1.0",
"chai": "^6.2.2",
"mocha": "^11.7.5",
"rimraf": "^6.1.3",
"rollup-plugin-node-externals": "^9.0.0",
"terser": "^5.46.1",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"files": [
"/dist/**",
"!/dist/types",
"LICENSE",
"LICENSE.header",
"README.md"
]
}