-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.94 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
{
"name": "pr-agent",
"displayName": "PR Agent",
"description": "Get a next pull request number right in your editor!",
"version": "1.0.0",
"engines": {
"vscode": "^1.84.0"
},
"categories": [
"Other"
],
"publisher": "krystofwoldrich",
"activationEvents": [],
"repository": {
"type": "git",
"url": "https://github.com/krystofwoldrich/pr-agent.git"
},
"icon": "images/pr-agent-icon.png",
"main": "./out/main.js",
"contributes": {
"commands": [
{
"command": "pr-agent.nextPullNumber",
"title": "PR Agent: Next Pull Request Number"
},
{
"command": "pr-agent.nextPullLink",
"title": "PR Agent: Next Pull Request Link Markdown"
},
{
"command": "pr-agent.clearExtensionSecrets",
"title": "PR Agent: Clear Extension Secrets"
}
]
},
"scripts": {
"package": "pnpm vsce package --no-dependencies",
"publish": "pnpm vsce publish --no-dependencies",
"vscode:prepublish": "pnpm run esbuild-base --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "pnpm run esbuild-base --sourcemap",
"esbuild-watch": "pnpm run esbuild-base --sourcemap --watch",
"test-compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "pnpm run test-compile && pnpm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"clear": "rimraf ./out"
},
"devDependencies": {
"@types/ini": "^1.3.34",
"@types/mocha": "^10.0.7",
"@types/node": "~18.19.41",
"@types/vscode": "^1.91.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^2.31.1",
"esbuild": "^0.19.12",
"eslint": "^8.57.0",
"glob": "^10.4.5",
"ini": "^4.1.3",
"mocha": "^10.7.0",
"typescript": "^5.5.3"
}
}