-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
154 lines (154 loc) · 4.04 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
{
"name": "language-pde",
"displayName": "Processing Language",
"description": "Processing Language Support for VSCode",
"version": "1.4.6",
"publisher": "Tobiah",
"engines": {
"vscode": "^1.48.0"
},
"homepage": "https://github.com/TobiahZ/processing-vscode",
"repository": {
"type": "git",
"url": "https://github.com/TobiahZ/processing-vscode.git"
},
"categories": [
"Programming Languages",
"Snippets"
],
"bugs": "https://github.com/TobiahZ/processing-vscode/issues",
"license": "SEE LICENSE IN LICENSE.txt",
"keywords": [
"processing",
"pde",
"language",
"snippets",
"java",
"multi-root ready"
],
"activationEvents": [
"onCommand:processing.CreateTaskFile",
"onCommand:processing.RunTaskFile",
"onCommand:processing.OpenExtensionDocumentation",
"onCommand:processing.OpenDocs",
"onCommand:processing.SearchWebsite"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "processing.CreateTaskFile",
"title": "Processing: Create Task File"
},
{
"command": "processing.RunTaskFile",
"title": "Processing: Run Processing Project"
},
{
"command": "processing.OpenExtensionDocumentation",
"title": "Processing: Open Extension Documentation"
},
{
"command": "processing.OpenDocs",
"title": "Processing: Open Documentation for Selection"
},
{
"command": "processing.SearchWebsite",
"title": "Processing: Search Processing Website"
}
],
"languages": [
{
"id": "pde",
"aliases": [
"Processing",
"pde"
],
"extensions": [
".pde"
],
"configuration": "./pde.configuration.json"
}
],
"grammars": [
{
"language": "pde",
"scopeName": "source.pde",
"path": "./syntaxes/pde.tmLanguage"
}
],
"snippets": [
{
"language": "pde",
"path": "./snippets/snippets.json"
}
],
"menus": {
"editor/context": [
{
"when": "editorHasSelection && editorLangId == 'pde'",
"command": "processing.OpenDocs",
"group": "navigation@1"
}
]
},
"configuration": {
"type": "object",
"title": "Processing",
"properties": {
"processing.path": {
"type": "string",
"default": "processing-java",
"description": "Path to Processing. Leave default if you've added processing to your path, otherwise enter the path to processing-java here. Example: 'C:\\Program Files\\processing-3.0.1\\processing-java' for Windows"
},
"processing.docs": {
"type": "string",
"default": "processing.org",
"enum": [
"processing.org",
"p5js.org"
],
"enumDescriptions": [
"Use processing.org for documentation",
"Use p5js for documentation"
],
"description": "Which documentation should this extension use?"
},
"processing.search": {
"type": "string",
"default": "Google",
"enum": [
"Google",
"DuckDuckGo"
],
"enumDescriptions": [
"Use Google to search documentation",
"Use DuckDuckGo to search documentation"
],
"description": "Which search engine should this extension use?"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^5.2.6",
"@types/node": "^10.17.29",
"@types/vscode": "^1.48.0",
"glob": "^7.1.6",
"mocha": "^10.2.0",
"tslint": "^5.20.1",
"typescript": "^3.9.7",
"vsce": "^2.15.0",
"vscode-test": "^1.4.0"
},
"icon": "processing.png"
}