forked from halo-sigs/vscode-extension-halo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.85 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
{
"name": "halo",
"displayName": "Halo",
"version": "1.2.0",
"description": "Halo's VSCode integration supports publishing post to Halo sites",
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/halo-sigs/vscode-extension-halo"
},
"license": "https://github.com/halo-sigs/vscode-extension-halo/blob/main/LICENSE",
"author": {
"name": "Halo OSS Team",
"url": "https://github.com/halo-dev"
},
"maintainers": [
{
"name": "Ryan Wang",
"url": "https://github.com/ruibaby"
}
],
"publisher": "halo-dev",
"main": "./dist/extension.js",
"scripts": {
"compile": "webpack",
"compile-tests": "tsc -p . --outDir out",
"lint": "eslint src --ext ts",
"package": "webpack --mode production --devtool hidden-source-map",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "npm run package",
"watch": "webpack --watch",
"watch-tests": "tsc -p . -w --outDir out"
},
"contributes": {
"commands": [
{
"command": "vscode-extension-halo.setup",
"title": "%vscode-extension-halo.setup%"
},
{
"command": "vscode-extension-halo.publish",
"title": "%vscode-extension-halo.publish%"
},
{
"command": "vscode-extension-halo.pull",
"title": "%vscode-extension-halo.pull%"
},
{
"command": "vscode-extension-halo.upload-images",
"title": "%vscode-extension-halo.upload-images%"
},
{
"command": "vscode-extension-halo.update",
"title": "%vscode-extension-halo.update%"
},
{
"command": "vscode-extension-halo.set-categories",
"title": "%vscode-extension-halo.set-categories%"
},
{
"command": "vscode-extension-halo.set-tags",
"title": "%vscode-extension-halo.set-tags%"
}
]
},
"activationEvents": [],
"dependencies": {
"@halo-dev/api-client": "^2.10.0",
"axios": "^1.6.0",
"form-data": "^4.0.0",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"markdown-it": "^13.0.2",
"markdown-it-anchor": "^8.6.7",
"preferences": "^2.0.2",
"transliteration": "^2.3.5"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/js-yaml": "^4.0.8",
"@types/markdown-it": "^12.2.3",
"@types/mocha": "^10.0.3",
"@types/node": "20.2.5",
"@types/vscode": "^1.79.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vscode/test-electron": "^2.3.6",
"eslint": "^8.52.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"vscode": "^1.79.0"
},
"icon": "assets/icon.png",
"l10n": "./l10n"
}