-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "zpl-labelary-preview",
"displayName": "ZPL Labelary Preview",
"description": "A Visual Studio Code extension that previews ZPL (Zebra Programming Language) labels using the Labelary API.",
"version": "0.0.3",
"publisher": "dmytrovasin",
"author": {
"name": "Dmytro Vasin",
"url": "https://github.com/DmytroVasin"
},
"icon": "assets/logo.png",
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "zpl-labelary-preview.view-label",
"title": "View ZPL Label"
}
],
"menus": {
"editor/context": [
{
"command": "zpl-labelary-preview.view-label",
"when": "editorHasSelection || resourceExtname == '.zpl'"
}
]
}
},
"license": "MIT",
"homepage": "https://github.com/DmytroVasin/zpl-labelary-preview/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/DmytroVasin/zpl-labelary-preview.git"
},
"bugs": {
"url": "https://github.com/DmytroVasin/zpl-labelary-preview/issues",
"email": "[email protected]"
},
"scripts": {
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"vscode:prepublish": "npm run package",
"package": "webpack --mode production --devtool hidden-source-map"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@vscode-elements/elements": "^1.5.0",
"axios": "^1.7.7",
"highlight.js": "^11.10.0"
}
}