-
Notifications
You must be signed in to change notification settings - Fork 255
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.72 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-language-server",
"version": "1.9.0",
"description": "A language server for alphaTab providing coding assistance for alphaTex.",
"keywords": [
"guitar",
"music-notation",
"music-sheet",
"html5",
"svg",
"guitar-tablature",
"alphaTab",
"alphaTex",
"language",
"server",
"lsp"
],
"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",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@microsoft/api-extractor": "^7.56.0",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.10",
"assert": "^2.1.0",
"chai": "^6.2.2",
"mocha": "^11.7.4",
"rimraf": "^6.1.2",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"bin": "./dist/server.mjs",
"main": "./dist/server.mjs",
"types": "./dist/server.d.ts",
"type": "module",
"files": [
"dist/",
"!dist/types/",
"README.md",
"LICENSE",
"LICENSE.header"
]
}