-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
162 lines (162 loc) · 4.34 KB
/
package.json
File metadata and controls
162 lines (162 loc) · 4.34 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
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
155
156
157
158
159
160
161
162
{
"name": "language-pde",
"displayName": "Processing Language",
"description": "Processing Language Support for VSCode",
"version": "1.4.6",
"publisher": "Tobiah",
"engines": {
"vscode": "^1.95.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": "./dist/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 package",
"compile": "node esbuild.js",
"package": "node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch": "node esbuild.js --watch",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile",
"test": "vscode-test",
"deploy": "vsce publish"
},
"overrides": {
"serialize-javascript": "^7.0.5",
"diff": "^8.0.3",
"brace-expansion": "^5.0.5",
"lodash": "^4.18.1"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.0",
"@types/vscode": "^1.95.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.28.0",
"mocha": "^11.7.5",
"typescript": "^5.9.3"
},
"icon": "processing.png"
}