forked from geddski/macros
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (79 loc) · 2.47 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
{
"name": "macros",
"displayName": "macros",
"description": "automate repetitive actions with custom macros",
"version": "1.1.0",
"publisher": "ctf0",
"repository": "https://github.com/ctf0/macros",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"icon": "images/icon.png",
"main": "./out/main",
"contributes": {
"configuration": {
"type": "object",
"title": "Macros configuration",
"properties": {
"macros.list": {
"type": "object"
},
"macros.qp-ignore": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "exclude commands from the quick-pick"
},
"macros.qp-allow": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "include commands to the quick-pick"
},
"macros.langIds": {
"type": "array",
"default": [
"json",
"jsonc"
],
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "language ids to show the cmnd names suggestion"
}
}
},
"commands": [
{
"command": "macros.execute",
"title": "Macros: Execute"
}
]
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --pure:console.log --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"watch": "npm run esbuild"
},
"devDependencies": {
"@types/node": "^20.12.7",
"typescript": "^5.4.5",
"esbuild": "^0.20.2",
"@types/vscode": "^1.85.0"
}
}