-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 2.75 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
{
"name": "zscript",
"displayName": "ZScript",
"description": "ZBrush scripting language support for visual studio code",
"version": "1.7.0",
"publisher": "ouelletjonathan",
"engines": {
"vscode": "^1.30.0"
},
"icon": "icon.png",
"galleryBanner": {
"color": "#ffad33",
"theme": "dark"
},
"license": "LICENSE",
"bugs": {
"url": "https://github.com/JonasOuellet/vscode-zscript/issues",
"email": "ouelletjonathan@hotmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/JonasOuellet/vscode-zscript.git"
},
"homepage": "https://github.com/JonasOuellet/vscode-zscript/blob/master/README.md",
"keywords": [
"zscript",
"zbrush"
],
"activationEvents": [
"onLanguage:zscript",
"onCommand:zscript.openZScriptDoc",
"onCommand:zscript.openZScriptCommandRef"
],
"categories": [
"Programming Languages",
"Snippets"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "zscript",
"aliases": [
"zscript",
"zsc",
"zScript"
],
"extensions": [
".txt"
],
"configuration": "./zsc_lang/language-configuration.json"
}
],
"grammars": [
{
"language": "zscript",
"scopeName": "source.zsc",
"path": "./zsc_lang/zsc.tmLanguage.json"
}
],
"snippets": [
{
"language": "zscript",
"path": "./zsc_lang/zsc_snippets.json"
}
],
"commands": [
{
"command": "zscript.openZScriptDoc",
"title": "ZScript: Web Doc"
},
{
"command": "zscript.openZScriptCommandRef",
"title": "ZScript: Web Command Reference"
}
],
"configuration": [
{
"title": "ZScript",
"properties": {
"zscript.autoComplete.insertComma": {
"type": "boolean",
"default": true,
"description": "Add comma and space when autocompleting a zscript command"
},
"zscript.hover.showDetailedCommandInfo": {
"type": "boolean",
"default": true,
"description": "Show arguments list when hovering a zscript command."
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^3.1.4",
"vscode": "^1.1.37",
"tslint": "^5.8.0",
"@types/node": "^10.12.18",
"@types/mocha": "^5.2.5",
"jsdom": "^16.7.0",
"@types/jsdom": "^12.2.1",
"@types/opn": "^5.1.0"
},
"dependencies": {}
}