-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
120 lines (120 loc) · 3.4 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
{
"name": "halo",
"displayName": "Halo",
"version": "1.3.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",
"url": "https://github.com/halo-dev"
},
"maintainers": [
{
"name": "Ryan Wang",
"url": "https://github.com/ruibaby"
}
],
"publisher": "halo-dev",
"main": "./dist/extension.js",
"scripts": {
"compile": "rspack",
"compile-tests": "tsc -p . --outDir out",
"check": "biome check --write src/",
"package": "rspack --mode production --devtool true",
"prepare": "husky",
"pretest": "npm run compile-tests && npm run compile && npm run check",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "npm run package",
"watch": "rspack --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%"
}
],
"configuration": {
"type": "object",
"title": "Halo",
"properties": {
"halo.post.publishByDefault": {
"type": "boolean",
"default": false,
"description": "%vscode-extension-halo.configuration.post.publishByDefault%"
}
}
}
},
"activationEvents": [],
"lint-staged": {
"*.{ts}": ["biome check --changed"]
},
"dependencies": {
"@halo-dev/api-client": "^2.15.0",
"axios": "^1.6.8",
"file-type": "^19.0.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": {
"@biomejs/biome": "1.9.4",
"@rspack/cli": "^1.1.6",
"@rspack/core": "^1.1.6",
"@swc/helpers": "^0.5.15",
"@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",
"@vscode/test-electron": "^2.3.6",
"glob": "^8.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^10.2.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2"
},
"engines": {
"vscode": "^1.79.0"
},
"icon": "assets/icon.png",
"l10n": "./l10n",
"packageManager": "npm@10.9.1+sha512.c89530d37c4baa38afd43e76a077a84b9aa63840b986426584fd5c5a54ab0a0b21bb1595c851042b733784b0b43706d36a494b4d8ae1a086a762cb8d3f95942a"
}