-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 2.64 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
{
"name": "zmk",
"displayName": "zmk",
"description": "Zodiac Make",
"version": "1.3.3",
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Other"
],
"publisher": "osesov",
"repository": {
"type": "git",
"url": "git@github.com:osesov/zmk.git"
},
"activationEvents": [
"*",
"onCommand:extension.zmkConfig",
"onCommand:extension.zmkUpdateCopyright"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.zmkConfig",
"title": "ZMK: Update gnb config"
},
{
"command": "extension.showCurrentZmkConfig",
"title": "ZMK: Show current gnb and ninja targets"
},
{
"command": "extension.zmkUpdateBundlesInclude",
"title": "ZMK: Update bundles Include Paths"
},
{
"command": "extension.zmkUpdateCopyright",
"title": "ZMK: Insert or update Copyright header"
}
],
"configuration": {
"title": "zmk",
"properties": {
"zmk.rootDir": {
"type": "string",
"default": null,
"description": "zmk root folder."
},
"zmk.buildDir": {
"type": "string",
"default": null,
"description": "zmk root folder."
},
"zmk.bundleDir": {
"type": "string",
"description": "zmk bundle folder location"
},
"zmk.config": {
"type": "string",
"default": "zodiac-pc_linux-zebra-dev",
"description": "zmk config name."
},
"zmk.target": {
"type": [
"string",
"null"
],
"default": null,
"description": "Ninja target to build."
},
"zmk.nfsDir": {
"type": [
"string",
"null"
],
"default": null,
"description": "root of nfs image"
},
"zmk.excludeBundles": {
"type": "array",
"items": {
"type": "string",
"title": "bundle name to exclude"
},
"default": [],
"description": "List of bundles to exclude"
},
"zmk.developer": {
"type": "string",
"default": "<<<add your name to 'zmk.developer'>>>",
"description": "Developer name"
},
"zmk.copyrightComment": {
"type": [
"string",
null
],
"default": null,
"description": "Copyright comment template"
}
}
}
},
"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",
"package": "npm i && npm run compile && vsce package"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.8",
"tslint": "^6.1.3",
"typescript": "^4.3.2",
"vsce": "^1.81.1",
"vscode": "^1.1.37"
},
"license": "0BSD"
}