@coderline/alphatab-vite 1.7.0-alpha.1536

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@coderline/alphatab-vite",
3
+ "version": "1.7.0-alpha.1536",
4
+ "description": "A plugin for Vite to bundle alphaTab into your webapps.",
5
+ "keywords": [
6
+ "guitar",
7
+ "music-notation",
8
+ "music-sheet",
9
+ "html5",
10
+ "svg",
11
+ "guitar-tablature",
12
+ "vite"
13
+ ],
14
+ "homepage": "https://alphatab.net",
15
+ "bugs": {
16
+ "url": "https://github.com/coderline/alphaTab/issues"
17
+ },
18
+ "author": "Daniel Kuschny",
19
+ "license": "MPL-2.0",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/coderline/alphaTab.git"
23
+ },
24
+ "type": "module",
25
+ "main": "dist/alphaTab.vite.js",
26
+ "module": "dist/alphaTab.vite.mjs",
27
+ "typings": "dist/alphaTab.vite.d.ts",
28
+ "scripts": {
29
+ "clean": "rimraf dist",
30
+ "lint": "biome lint",
31
+ "typecheck": "tsc --noEmit",
32
+ "build": "vite build --mode esm && vite build --mode cjs",
33
+ "test": "mocha"
34
+ },
35
+ "dependencies": {
36
+ "vite": "^7.1.3"
37
+ },
38
+ "devDependencies": {
39
+ "@biomejs/biome": "^2.2.2",
40
+ "@microsoft/api-extractor": "^7.52.11",
41
+ "@types/chai": "^5.2.2",
42
+ "@types/mocha": "^10.0.10",
43
+ "@types/node": "^24.3.0",
44
+ "assert": "^2.1.0",
45
+ "chai": "^6.0.1",
46
+ "mocha": "^11.7.1",
47
+ "rimraf": "^6.0.1",
48
+ "terser": "^5.43.1",
49
+ "tslib": "^2.8.1",
50
+ "tsx": "^4.20.5",
51
+ "typescript": "^5.9.2"
52
+ },
53
+ "files": [
54
+ "/dist/alphaTab*.js",
55
+ "/dist/alphaTab*.mjs",
56
+ "/dist/alphaTab*.ts",
57
+ "LICENSE",
58
+ "LICENSE.header",
59
+ "README.md"
60
+ ]
61
+ }