-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.83 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.83 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
{
"name": "overwrite",
"displayName": "Overwrite",
"packageManager": "pnpm@10.8.0",
"publisher": "mnismt",
"license": "MIT",
"description": "Pack your entire repo in a single prompt",
"repository": {
"type": "git",
"url": "https://github.com/mnismt/overwrite.git"
},
"version": "0.1.3",
"icon": "resources/overwrite-logo.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:overwriteFilesWebview"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "overwrite",
"title": "Overwrite",
"icon": "resources/overwrite-logo.png"
}
]
},
"views": {
"overwrite": [
{
"id": "overwriteFilesWebview",
"name": "Overwrite",
"type": "webview",
"contextualTitle": "Overwrite Files"
}
]
},
"commands": [],
"configuration": {
"title": "Overwrite",
"properties": {
"overwrite.telemetry.enabled": {
"type": "boolean",
"default": true,
"description": "Enable anonymous usage telemetry to help improve the extension. All data is anonymized and no file contents or paths are ever collected."
}
}
}
},
"scripts": {
"vscode:package": "pnpm run package && pnpm vsce package --no-dependencies",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "biome check src --apply",
"test": "vscode-test",
"package": "pnpm run check-types && pnpm run lint && node esbuild.js --production",
"build:esbuild": "node esbuild.js",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"check-types": "tsc --noEmit",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"dev:webview": "cd src/webview-ui && pnpm run dev"
},
"keywords": [
"prompt",
"context",
"xml",
"diff",
"apply",
"ai",
"llm",
"patch"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.9",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.0",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"glob": "^10.4.2",
"mocha": "^10.5.2",
"npm-run-all": "^4.1.5",
"typescript": "^5.5.2",
"vsce": "^2.15.0"
},
"dependencies": {
"@vscode/codicons": "^0.0.36",
"fast-xml-parser": "^5.2.2",
"ignore": "^7.0.4",
"js-tiktoken": "^1.0.12",
"p-limit": "^6.2.0",
"posthog-node": "^5.9.1"
}
}