-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.45 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
{
"name": "git-wiki-editor",
"displayName": "Git Wiki Editor",
"description": "An easy way to quickly edit wikis locally inside your editor!",
"version": "1.1.3",
"icon": "public/icon.png",
"publisher": "dentolos19",
"repository": {
"type": "git",
"url": "https://github.com/dentolos19/git-wiki-editor.git"
},
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "git-wiki-editor.openWiki",
"category": "Git Wiki Editor",
"title": "Open Wiki"
},
{
"command": "git-wiki-editor.publishWiki",
"category": "Git Wiki Editor",
"title": "Publish Wiki"
},
{
"command": "git-wiki-editor.cleanCache",
"category": "Git Wiki Editor",
"title": "Clean Cache"
}
],
"configuration": {
"title": "Git Wiki Editor",
"properties": {
"git-wiki-editor.workspace.isWikiWorkspace": {
"type": "boolean",
"default": false,
"description": "Whether the current workspace is a wiki workspace. Do not set manually!"
},
"git-wiki-editor.workspace.repoFullName": {
"type": "string",
"default": "",
"description": "The GitHub repository that the wiki belongs to. Do not set manually!"
}
}
}
},
"packageManager": "pnpm@9.7.0+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf",
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "esbuild src/extension.ts --bundle --outfile=out/extension.js --format=cjs --platform=node --external:vscode --minify",
"pretest": "pnpm run compile && pnpm run lint",
"watch": "tsc -watch -p .",
"compile": "tsc -p .",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"pack": "pnpm vsce pack --no-dependencies --out out/extension.vsix"
},
"dependencies": {
"octokit": "^3.2.1"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "^20.15.0",
"@types/vscode": "^1.92.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^2.32.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"typescript": "^5.5.4"
}
}