-
Notifications
You must be signed in to change notification settings - Fork 254
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.81 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.81 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
{
"name": "@coderline/alphatab-monaco",
"version": "1.9.0",
"description": "A Monaco editor integration for alphaTab providing coding assistance for alphaTex.",
"keywords": [
"guitar",
"music-notation",
"music-sheet",
"html5",
"svg",
"guitar-tablature",
"alphaTab",
"alphaTex"
],
"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"
},
"scripts": {
"clean": "rimraf dist",
"lint": "biome lint",
"typecheck": "tsc --noEmit",
"build": "vite build",
"dev": "vite build --watch",
"test": "mocha"
},
"dependencies": {
"@coderline/alphatab": "^1.9.0",
"@coderline/alphatab-language-server": "^1.9.0",
"monaco-editor": "^0.55.1",
"vscode-languageserver-types": "^3.17.5",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.3.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@microsoft/api-extractor": "^7.57.7",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.0",
"assert": "^2.1.0",
"chai": "^6.2.2",
"mocha": "^11.7.4",
"rimraf": "^6.1.3",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"bin": "./dist/alphaTab.monaco.mjs",
"main": "./dist/alphaTab.monaco.mjs",
"types": "./dist/alphaTab.monaco.d.ts",
"type": "module",
"files": [
"/dist/",
"!/dist/types/",
"README.md",
"LICENSE",
"LICENSE.header"
]
}