-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.35 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.35 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
{
"name": "urscript",
"displayName": "URScript",
"description": "Code snippet and completion items for Universal Robots Script",
"version": "0.1.23",
"publisher": "ahernguo",
"icon": "resources/logo.png",
"engines": {
"vscode": "^1.35.1"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"activationEvents": [
"onLanguage:urscript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ahernguo/urscript-extension.git"
},
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "urscript",
"aliases": [
"URScript",
"script"
],
"extensions": [
".script",
".variables",
".urscript"
],
"configuration": "./language-configuration.json"
}
],
"activationEvents": [
"onLanguage:urscript"
],
"main": "./out/extension",
"snippets": [
{
"language": "urscript",
"path": "./snippets/urscript.json"
}
],
"grammars": [
{
"language": "urscript",
"scopeName": "source.urscript",
"path": "./syntaxes/urscript.tmLanguage.json"
}
],
"configuration": {
"title": "URScript",
"properties": {
"urscript.autocomplete.methodCommitCharacters": {
"type": "array",
"items": { "type": "string" },
"default": ["(", ")", ":", "\\t", "\\n", "Space"],
"description": "The commit characters that trigger autocomplete of methods. E.g. `r2d`, `movej`\nPlease use escape symbol or symbol name. E.g. ( \\t | tab ) for tab, ( \\n | newline | enter) for newline, (Space) for space"
},
"urscript.autocomplete.keywordCommitCharacters": {
"type": "array",
"items": { "type": "string" },
"default": ["\\t", "\\n", "Space"],
"description": "The commit characters that trigger autocomplete of keywords. E.g. `def`, `end`\nPlease use escape symbol or symbol name. E.g. ( \\t | tab ) for tab, ( \\n | newline | enter) for newline, (Space) for space"
},
"urscript.autocomplete.urdocCommitCharacters": {
"type": "array",
"items": { "type": "string" },
"default": ["\\n", "\\t"],
"description": "The commit characters that trigger autocomplete of UrDoc paragraph (###)\nPlease use escape symbol or symbol name. E.g. ( \\t | tab ) for tab, ( \\n | newline | enter) for newline, (Space) for space"
},
"urscript.autocomplete.urdocTagCommitCharacters": {
"type": "array",
"items": { "type": "string" },
"default": ["\\n", "\\t", "Space"],
"description": "The commit characters that trigger autocomplete of UrDoc tags. E.g. `@param`\nPlease use escape symbol or symbol name. E.g. ( \\t | tab ) for tab, ( \\n | newline | enter) for newline, (Space) for space"
}
}
}
},
"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": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.59",
"tslint": "^5.20.1",
"typescript": "^2.6.1",
"vscode": "^1.1.36",
"json-schema": "^0.4.0"
}
}