@coderline/alphatab 1.2.2 → 1.3.0-alpha.1005

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.
Files changed (36) hide show
  1. package/README.md +39 -32
  2. package/dist/alphaTab.core.min.mjs +2 -0
  3. package/dist/alphaTab.core.min.mjs.map +1 -0
  4. package/dist/alphaTab.core.mjs +45998 -0
  5. package/dist/alphaTab.core.mjs.map +1 -0
  6. package/dist/alphaTab.d.ts +7571 -6449
  7. package/dist/alphaTab.js +45614 -42133
  8. package/dist/alphaTab.js.map +1 -0
  9. package/dist/alphaTab.min.js +2 -17
  10. package/dist/alphaTab.min.js.map +1 -0
  11. package/dist/alphaTab.min.mjs +2 -0
  12. package/dist/alphaTab.min.mjs.map +1 -0
  13. package/dist/alphaTab.mjs +63 -0
  14. package/dist/alphaTab.mjs.map +1 -0
  15. package/dist/alphaTab.vite.d.ts +38 -0
  16. package/dist/alphaTab.vite.js +782 -0
  17. package/dist/alphaTab.vite.js.map +1 -0
  18. package/dist/alphaTab.vite.mjs +758 -0
  19. package/dist/alphaTab.vite.mjs.map +1 -0
  20. package/dist/alphaTab.webpack.d.ts +43 -0
  21. package/dist/alphaTab.webpack.js +478 -0
  22. package/dist/alphaTab.webpack.js.map +1 -0
  23. package/dist/alphaTab.webpack.mjs +453 -0
  24. package/dist/alphaTab.webpack.mjs.map +1 -0
  25. package/dist/alphaTab.worker.min.mjs +2 -0
  26. package/dist/alphaTab.worker.min.mjs.map +1 -0
  27. package/dist/alphaTab.worker.mjs +21 -0
  28. package/dist/alphaTab.worker.mjs.map +1 -0
  29. package/dist/alphaTab.worklet.min.mjs +2 -0
  30. package/dist/alphaTab.worklet.min.mjs.map +1 -0
  31. package/dist/alphaTab.worklet.mjs +21 -0
  32. package/dist/alphaTab.worklet.mjs.map +1 -0
  33. package/package.json +108 -82
  34. /package/dist/font/{FONTLOG.txt → Bravura-FONTLOG.txt} +0 -0
  35. /package/dist/font/{OFL-FAQ.txt → Bravura-OFL-FAQ.txt} +0 -0
  36. /package/dist/font/{OFL.txt → Bravura-OFL.txt} +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"alphaTab.worklet.min.mjs","sources":["../../src/alphaTab.worklet.ts"],"sourcesContent":[null],"names":["alphaTab","Environment","initializeAudioWorklet"],"mappings":"0CAEAA,EAAAC,YAAAC"}
@@ -0,0 +1,21 @@
1
+ /**
2
+ * alphaTab v1.3.0-alpha.1005 (develop, build 1005)
3
+ *
4
+ * Copyright © 2024, Daniel Kuschny and Contributors, All rights reserved.
5
+ *
6
+ * This Source Code Form is subject to the terms of the Mozilla Public
7
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
8
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
+ *
10
+ * SoundFont loading and Audio Synthesis based on TinySoundFont (licensed under MIT)
11
+ * Copyright (C) 2017, 2018 Bernhard Schelling (https://github.com/schellingb/TinySoundFont)
12
+ *
13
+ * TinySoundFont is based on SFZero (licensed under MIT)
14
+ * Copyright (C) 2012 Steve Folta (https://github.com/stevefolta/SFZero)
15
+ */
16
+
17
+ import * as alphaTab from './alphaTab.core.mjs';
18
+
19
+ /**@target web */
20
+ alphaTab.Environment.initializeAudioWorklet();
21
+ //# sourceMappingURL=alphaTab.worklet.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"alphaTab.worklet.mjs","sources":["../../src/alphaTab.worklet.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAEA"}
package/package.json CHANGED
@@ -1,84 +1,110 @@
1
1
  {
2
- "name": "@coderline/alphatab",
3
- "version": "1.2.2",
4
- "description": "alphaTab is a music notation and guitar tablature rendering library",
5
- "keywords": [
6
- "guitar",
7
- "music-notation",
8
- "music-sheet",
9
- "html5",
10
- "svg",
11
- "guitar-tablature"
12
- ],
13
- "homepage": "https://alphatab.net",
14
- "bugs": {
15
- "url": "https://github.com/coderline/alphaTab/issues"
16
- },
17
- "author": "Daniel Kuschny",
18
- "license": "MPL-2.0",
19
- "repository": {
20
- "type": "git",
21
- "url": "https://github.com/coderline/alphaTab"
22
- },
23
- "main": "dist/alphaTab.js",
24
- "typings": "dist/alphaTab.d.ts",
25
- "engines": {
26
- "node": ">=6.0.0"
27
- },
28
- "scripts": {
29
- "clean": "rimraf dist",
30
- "lint": "tslint --project tsconfig.build.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
31
- "build": "npm run generate-typescript && tsc --project tsconfig.build.json && rollup -c rollup.config.js",
32
- "build-ci": "npm run clean && npm run build && npm pack",
33
- "start": "node scripts/setup-playground.js && npm run build && concurrently --kill-others \"tsc --project tsconfig.build.json --watch\" \"rollup -c rollup.config.js -w\"",
34
- "test": "npm run generate-typescript && tsc --project tsconfig.json && concurrently --kill-others \"tsc --project tsconfig.json -w\" \"karma start karma.conf.js --browsers Chrome --no-single-run --reporters spec,kjhtml\"",
35
- "test-ci": "npm run generate-typescript && tsc --project tsconfig.json && karma start karma.conf.js --browsers ChromeHeadless --single-run --reporters spec",
36
- "generate-typescript": "rimraf src/generated && ts-node --project tsconfig.build-csharp.json src.compiler/typescript/AlphaTabGenerator.ts --project tsconfig.build-csharp.json",
37
- "generate-csharp": "npm run generate-typescript && ts-node --project tsconfig.build-csharp.json src.compiler/csharp/CSharpTranspiler.ts --project tsconfig.build-csharp.json",
38
- "build-csharp": "npm run generate-csharp && cd src.csharp && dotnet build -c Release",
39
- "build-csharp-ci": "npm run clean && npm run generate-csharp && cd src.csharp && dotnet build -c Release",
40
- "test-csharp": "cd src.csharp && dotnet test",
41
- "test-csharp-ci": "cd src.csharp && dotnet test"
42
- },
43
- "devDependencies": {
44
- "@rollup/plugin-commonjs": "^17.0.0",
45
- "@types/jasmine": "^3.6.2",
46
- "@types/resize-observer-browser": "^0.1.5",
47
- "concurrently": "^5.3.0",
48
- "cors": "^2.8.5",
49
- "fs-extra": "^9.0.1",
50
- "git-branch": "^2.0.1",
51
- "karma": "^5.2.3",
52
- "karma-chrome-launcher": "^3.1.0",
53
- "karma-express-http-server": "0.0.1",
54
- "karma-jasmine": "^4.0.1",
55
- "karma-jasmine-html-reporter": "^1.5.4",
56
- "karma-rollup-preprocessor": "^7.0.5",
57
- "karma-spec-reporter": "0.0.32",
58
- "lodash": "^4.17.20",
59
- "multer": "^1.4.2",
60
- "rimraf": "^3.0.2",
61
- "rollup": "^2.35.1",
62
- "rollup-plugin-copy": "^3.3.0",
63
- "rollup-plugin-dts": "^2.0.1",
64
- "rollup-plugin-license": "^2.2.0",
65
- "rollup-plugin-serve": "^1.1.0",
66
- "rollup-plugin-terser": "^7.0.2",
67
- "terser": "^5.5.1",
68
- "ts-node": "^9.1.1",
69
- "tslint": "^6.1.3",
70
- "tslint-config-prettier": "^1.15.0",
71
- "tslint-config-standard": "^9.0.0",
72
- "ttypescript": "^1.5.12",
73
- "typescript": "^4.1.3"
74
- },
75
- "files": [
76
- "/dist/alphaTab.js",
77
- "/dist/alphaTab.min.js",
78
- "/dist/alphaTab.d.ts",
79
- "/dist/font/Bravura.*",
80
- "/dist/font/*.txt",
81
- "/dist/soundfont/*",
82
- "LICENSE.header"
83
- ]
2
+ "name": "@coderline/alphatab",
3
+ "version": "1.3.0-alpha.1005",
4
+ "description": "alphaTab is a music notation and guitar tablature rendering library",
5
+ "keywords": [
6
+ "guitar",
7
+ "music-notation",
8
+ "music-sheet",
9
+ "html5",
10
+ "svg",
11
+ "guitar-tablature"
12
+ ],
13
+ "homepage": "https://alphatab.net",
14
+ "bugs": {
15
+ "url": "https://github.com/coderline/alphaTab/issues"
16
+ },
17
+ "author": "Daniel Kuschny",
18
+ "license": "MPL-2.0",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/coderline/alphaTab"
22
+ },
23
+ "main": "dist/alphaTab.js",
24
+ "module": "dist/alphaTab.mjs",
25
+ "typings": "dist/alphaTab.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "import": "./dist/alphaTab.mjs",
29
+ "require": "./dist/alphaTab.js",
30
+ "types": "./dist/alphaTab.d.ts"
31
+ },
32
+ "./webpack": {
33
+ "import": "./dist/alphaTab.webpack.mjs",
34
+ "require": "./dist/alphaTab.webpack.js",
35
+ "types": "./dist/alphaTab.webpack.d.ts"
36
+ },
37
+ "./vite": {
38
+ "import": "./dist/alphaTab.vite.mjs",
39
+ "require": "./dist/alphaTab.vite.js",
40
+ "types": "./dist/alphaTab.vite.d.ts"
41
+ },
42
+ "./soundfont/*": "./dist/soundfont/*",
43
+ "./font/*": "./dist/font/*"
44
+ },
45
+ "engines": {
46
+ "node": ">=6.0.0"
47
+ },
48
+ "scripts": {
49
+ "clean": "rimraf dist",
50
+ "lint": "eslint .",
51
+ "start": "node scripts/setup-playground.js && npm run generate-typescript && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript -w",
52
+ "generate-typescript": "rimraf src/generated && tsx src.compiler/typescript/AlphaTabGenerator.ts",
53
+ "generate-csharp": "npm run generate-typescript && tsx src.compiler/csharp/CSharpTranspiler.ts --outDir dist/lib.csharp",
54
+ "generate-kotlin": "npm run generate-typescript && tsx src.compiler/kotlin/KotlinTranspiler.ts --outDir dist/lib.kotlin",
55
+ "build": "npm run generate-typescript && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
56
+ "build-csharp": "npm run generate-csharp && cd src.csharp && dotnet build -c Release",
57
+ "build-kotlin": "npm run generate-kotlin && cd src.kotlin/alphaTab && gradlew assembleRelease",
58
+ "test": "mocha",
59
+ "test-csharp": "cd src.csharp && dotnet test -c Release",
60
+ "test-kotlin": "cd src.kotlin/alphaTab && gradlew testReleaseUnitTest --info"
61
+ },
62
+ "devDependencies": {
63
+ "@coderline/alphaskia": "^2.1.120",
64
+ "@coderline/alphaskia-windows": "^2.1.120",
65
+ "@rollup/plugin-commonjs": "^25.0.7",
66
+ "@rollup/plugin-replace": "^5.0.5",
67
+ "@rollup/plugin-terser": "^0.4.4",
68
+ "@rollup/plugin-typescript": "^11.1.6",
69
+ "@types/chai": "^4.3.12",
70
+ "@types/cors": "^2.8.17",
71
+ "@types/mocha": "^10.0.6",
72
+ "@typescript-eslint/eslint-plugin": "^7.0.2",
73
+ "@typescript-eslint/parser": "^7.0.2",
74
+ "assert": "^2.1.0",
75
+ "chai": "^5.1.0",
76
+ "concurrently": "^8.2.2",
77
+ "cors": "^2.8.5",
78
+ "eslint": "^8.57.0",
79
+ "express": "^4.18.2",
80
+ "fs-extra": "^11.2.0",
81
+ "html-webpack-plugin": "^5.6.0",
82
+ "mocha": "^10.3.0",
83
+ "multer": "^1.4.5-lts.1",
84
+ "opener": "^1.5.2",
85
+ "rimraf": "^5.0.5",
86
+ "rollup": "^4.12.0",
87
+ "rollup-plugin-copy": "^3.5.0",
88
+ "rollup-plugin-dts": "^6.1.0",
89
+ "rollup-plugin-license": "^3.2.0",
90
+ "terser": "^5.28.1",
91
+ "tslib": "^2.6.2",
92
+ "tsx": "^4.7.1",
93
+ "typescript": "^5.3.3",
94
+ "vite": "^5.2.8",
95
+ "webpack": "^5.90.3",
96
+ "webpack-cli": "^5.1.4"
97
+ },
98
+ "files": [
99
+ "/dist/alphaTab*",
100
+ "/dist/font/Bravura.*",
101
+ "/dist/font/Bravura*.txt",
102
+ "/dist/font/*.txt",
103
+ "/dist/soundfont/*",
104
+ "LICENSE.header"
105
+ ],
106
+ "dependencies": {
107
+ "@types/express": "^4.17.21",
108
+ "@types/opener": "^1.4.3"
109
+ }
84
110
  }
File without changes
File without changes
File without changes