-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
171 lines (171 loc) · 5.02 KB
/
package.json
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "abcjs-vscode",
"displayName": "abcjs vscode",
"description": "ABC music notation editor, using abcjs library",
"version": "2.8.1",
"publisher": "alensiljak",
"author": {
"name": "Alen Šiljak"
},
"license": "GPL-3.0-or-later",
"icon": "res/icon128.png",
"repository": {
"type": "git",
"url": "https://github.com/abcjs-music/abcjs-vscode"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "abcjs-vscode.showPreview",
"title": "abcjs-vscode: Show Preview"
},
{
"command": "abcjs-vscode.exportHtml",
"title": "abcjs-vscode: Export Sheet to HTML"
},
{
"command": "abcjs-vscode.exportSvg",
"title": "abcjs-vscode: Export Sheet as SVG"
},
{
"command": "abcjs-vscode.printPreview",
"title": "abcjs-vscode: Print Preview"
}
],
"languages": [
{
"id": "abc",
"aliases": [
"ABC"
],
"extensions": [
".abc"
]
}
],
"grammars": [
{
"language": "abc",
"scopeName": "source.abc",
"path": "./abc.tmGrammar.json"
}
],
"snippets": [
{
"language": "abc",
"path": "./snippets.json"
}
],
"configuration": [
{
"title": "Page Formatting",
"properties": {
"abcjs-vscode.pageFormatting.responsive": {
"type": "string",
"default": "resize",
"enum": [
"",
"resize"
],
"scope": "resource",
"markdownDescription": "Use all the available width for the score. [Documentation](https://paulrosen.github.io/abcjs/visual/render-abc-options.html#responsive)"
},
"abcjs-vscode.pageFormatting.print": {
"type": "boolean",
"default": false,
"scope": "resource",
"description": "Apply print formatting"
},
"abcjs-vscode.pageFormatting.oneSvgPerLine": {
"type": "boolean",
"default": false,
"scope": "resource",
"markdownDescription": "Render each stave system as a separate SVG. Helps with page breaks. [Documentation](https://paulrosen.github.io/abcjs/visual/render-abc-options.html#onesvgperline)"
}
}
},
{
"title": "Sheet",
"properties": {
"abcjs-vscode.sheet.jazzchords": {
"type": "boolean",
"default": true,
"scope": "resource",
"markdownDescription": "Jazz style chord symbols formatting. [Documentation](https://paulrosen.github.io/abcjs/visual/render-abc-options.html#jazzchords)"
},
"abcjs-vscode.sheet.showDebug": {
"type": "boolean",
"default": false,
"scope": "resource",
"description": "Debug options for abcjs."
},
"abcjs-vscode.sheet.tablature": {
"type": "string",
"default": "",
"enum": [
"",
"Violin",
"Guitar"
],
"markdownDescription": "Display a tablature-style staff. [Documentation](https://paulrosen.github.io/abcjs/visual/render-abc-options.html#tablatures)"
}
}
},
{
"title": "Transposition",
"properties": {
"abcjs-vscode.transposition.visualTranspose": {
"type": "integer",
"default": 0,
"minimum": -12,
"maximum": 12,
"description": "Tune transposition (in half-steps)"
},
"abcjs-vscode.transposition.showTransposedSource": {
"type": "boolean",
"default": false,
"description": "Show transposed ABC source code"
}
}
}
]
},
"scripts": {
"deprecated: vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "npx esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"build": "npm run esbuild",
"deploy": "npx vsce publish"
},
"devDependencies": {
"@types/glob": "8.1.0",
"@types/mocha": "10.0.1",
"@types/node": "16.0.0",
"@types/vscode": "1.75.0",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"@vscode/test-electron": "2.3.0",
"@vscode/vsce": "2.19.0",
"esbuild": "0.17.16",
"eslint": "8.38.0",
"glob": "8.0.3",
"mocha": "10.2.0",
"typescript": "5.0.4"
},
"dependencies": {}
}