-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.54 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
{
"name": "kaoscript-language",
"displayName": "Kaoscript Language",
"description": "kaoscript language integration for VS Code",
"version": "0.3.0",
"publisher": "kaoscript",
"homepage": "https://github.com/kaoscript/highlight-vscode",
"repository": {
"type": "git",
"url": "https://github.com/kaoscript/highlight-vscode.git"
},
"bugs": {
"url": "https://github.com/kaoscript/highlight-vscode/issues"
},
"author": {
"name": "Baptiste Augrain",
"email": "daiyam@zokugun.org"
},
"license": "MIT",
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"*"
],
"contributes": {
"languages": [
{
"id": "kaoscript",
"extensions": [
".ks"
],
"configuration": "./settings/kaoscript-configuration.json"
}
],
"grammars": [
{
"language": "kaoscript",
"scopeName": "source.ks",
"path": "./syntaxes/kaoscript.tmLanguage"
}
]
},
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^10.5.2",
"typescript": "^2.9.2",
"vscode": "^1.1.18"
},
"keywords": [
"grammar",
"language",
"syntax",
"kaoscript"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#342780",
"theme": "dark"
},
"__metadata": {
"id": "597e52f3-0cff-4a21-8634-dbdfdadec390",
"publisherDisplayName": "kaoscript",
"publisherId": "b1afa808-c2de-4fd1-bc72-7a84837490e7"
}
}