-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.48 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
{
"name": "counterpoint-lang",
"displayName": "Counterpoint Language Support",
"version": "1.2.0",
"description": "Language support for the Counterpoint programming language.",
"type": "module",
"scripts": {
"build": "node build.mjs",
"pack": "vsce package",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"vscode": "^1.55.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chharvey/counterpoint-lang.git"
},
"keywords": [
"Counterpoint",
"language"
],
"categories": [
"Programming Languages"
],
"author": "Chris Harvey <[email protected]> (https://chharvey.github.io/)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/chharvey/counterpoint-lang/issues"
},
"homepage": "https://github.com/chharvey/counterpoint-lang#readme",
"contributes": {
"languages": [
{
"id": "cp",
"aliases": [
"Counterpoint",
"cp"
],
"extensions": [
".cp"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "cp",
"scopeName": "source.cp",
"path": "./syntaxes/cp.tmLanguage.json"
},
{
"scopeName": "text.html.markdown.cp",
"path": "./syntaxes/markdown.tmLanguage.json",
"injectTo": [
"text.html.markdown"
]
}
]
},
"devDependencies": {
"vsce": "^2.11.0"
}
}