-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.47 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.47 KB
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
{
"name": "patchitup",
"displayName": "PatchItUp",
"description": "Create and apply git patches for local repos, GitHub Codespaces, WSL, Dev Containers, and SSH remotes with an intuitive sidebar UI",
"version": "0.0.10",
"publisher": "supermem613",
"license": "MIT",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/supermem613/PatchItUp.git"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"extensionKind": [
"ui",
"workspace"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "patchitup.createPatch",
"title": "PatchItUp: Create and Save Patch"
},
{
"command": "patchitup.showPanel",
"title": "PatchItUp: Open Panel",
"icon": "$(diff)"
},
{
"command": "patchitup.applyPatch",
"title": "PatchItUp: Apply Patch"
},
{
"command": "patchitup.showLogs",
"title": "PatchItUp: Show Logs",
"icon": "$(output)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "patchitup-panel",
"title": "PatchItUp",
"icon": "images/icon.svg"
}
]
},
"views": {
"patchitup-panel": [
{
"type": "webview",
"id": "patchitup.panelView",
"name": "Patch Manager",
"icon": "$(diff)"
}
]
},
"configuration": {
"title": "PatchItUp",
"properties": {
"patchitup.sourceDirectory": {
"type": "string",
"default": "/tmp",
"description": "Directory to create the patch from"
},
"patchitup.projectName": {
"type": "string",
"default": "project",
"description": "Project name to prefix patch files",
"scope": "machine-overridable"
},
"patchitup.destinationPath": {
"type": "string",
"default": "",
"description": "Local path on host machine to save patches (e.g., C:\\Users\\YourName\\patches)"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"format": "prettier --write .",
"format:check": "prettier --check .",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "node ./out/test/runTest.js",
"pretest:e2e": "npm run compile",
"test:e2e": "node ./out/test/e2e/runE2eTest.js"
},
"devDependencies": {
"@vscode/test-electron": "^2.5.2",
"@types/vscode": "^1.85.0",
"@types/node": "18.x",
"@types/mocha": "^10.0.10",
"eslint": "^9.0.0",
"mocha": "^11.0.0",
"prettier": "^3.5.1",
"typescript": "^5.3.2",
"typescript-eslint": "^8.0.0"
},
"overrides": {
"diff": "^8.0.3",
"serialize-javascript": "^7.0.5"
}
}