-
Notifications
You must be signed in to change notification settings - Fork 254
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.93 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.93 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "alphatab-vscode",
"version": "1.9.0",
"private": true,
"description": "A Visual Studio Code extension 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 && vite build --mode previewApp",
"dev": "concurrently \"npm run dev-extension\" \"npm run dev-preview-app\"",
"dev-extension": "vite build --watch",
"dev-preview-app": "vite build --watch --mode previewApp",
"test": "vscode-test"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"@types/vscode": "^1.110.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"assert": "^2.1.0",
"chai": "^6.2.2",
"concurrently": "^9.2.1",
"mocha": "^11.7.4",
"rimraf": "^6.1.3",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vscode-languageclient": "^9.0.1"
},
"publisher": "coderline",
"engines": {
"vscode": "^1.105.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"workspaceContains:**/*.atex",
"onWebviewPanel:alphatex.preview"
],
"main": "./dist/extension.js",
"type": "commonjs",
"contributes": {
"languages": [
{
"id": "alphatex",
"aliases": [
"alphaTex",
"alphatex"
],
"extensions": [
".atex"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "alphatex",
"scopeName": "source.alphatex",
"path": "./syntaxes/alphatex.tmLanguage.json"
}
],
"commands": [
{
"command": "alphatab-vscode.commands.openPreview",
"title": "Open alphaTex Preview",
"category": "alphaTex",
"icon": "$(open-preview)"
},
{
"command": "alphatab-vscode.commands.refreshPreview",
"title": "Refresh alphaTex Preview",
"category": "alphaTex",
"icon": "$(refresh)"
}
],
"menus": {
"editor/title": [
{
"command": "alphatab-vscode.commands.openPreview",
"when": "editorLangId == alphatex",
"group": "navigation"
},
{
"command": "alphatab-vscode.commands.refreshPreview",
"when": "alphaTexPreviewFocus",
"group": "navigation"
}
],
"commandPalette": [
{
"command": "alphatab-vscode.commands.openPreview",
"when": "editorLangId == alphatex",
"group": "navigation"
}
]
},
"keybindings": [
{
"command": "alphatab-vscode.commands.openPreview",
"key": "ctrl+k a",
"mac": "cmd+k a"
}
]
}
}