-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.21 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.21 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
114
115
116
117
118
119
120
121
122
{
"name": "deepcode-vscode",
"displayName": "Deep Code",
"description": "Vibe coding for the latest deepseek-v4 model",
"version": "0.1.17",
"publisher": "vegamo",
"repository": {
"type": "git",
"url": "https://github.com/lessweb/deepcode.git"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"icon": "resources/deepcoding_icon.png",
"activationEvents": [],
"main": "./out/extension.js",
"files": [
"out/extension.js",
"resources/**",
"templates/tools/**",
"templates/prompts/**",
"README.md",
"README_cn.md",
"README_en.md",
"LICENSE"
],
"contributes": {
"commands": [
{
"command": "deepcode.openView",
"title": "Open Deep Code",
"icon": {
"light": "resources/deepcoding_icon.svg",
"dark": "resources/deepcoding_icon.svg"
}
}
],
"viewsContainers": {
"activitybar": [
{
"id": "deepcode",
"title": "Deep Code",
"icon": "resources/deepcoding_icon.png"
}
]
},
"views": {
"deepcode": [
{
"id": "deepcode.chatView",
"name": "Deep Code",
"icon": "resources/deepcoding_icon.png",
"type": "webview"
}
]
},
"menus": {
"editor/title": [
{
"command": "deepcode.openView",
"group": "navigation@100"
}
]
}
},
"scripts": {
"typecheck": "tsc -p ./ --noEmit",
"bundle": "esbuild ./src/extension.ts --bundle --platform=node --format=cjs --target=node18 --outfile=out/extension.js --external:vscode --sourcemap --footer:js=\"module.exports = { activate, deactivate };\" --log-override:empty-import-meta=silent",
"compile": "npm run typecheck && npm run bundle",
"test": "tsx --test src/tests/*.test.ts",
"test:single": "tsx --test",
"watch": "tsc -w -p ./ --noEmit",
"vscode:prepublish": "npm run compile",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"lint:strict": "eslint src/ --max-warnings 0",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"check": "npm run format:check && npm run lint:strict && npm run typecheck",
"fix": "npm run format && npm run lint:fix",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/ejs": "^3.1.5",
"@types/markdown-it": "^14.1.1",
"@types/node": "^20.12.7",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"esbuild": "^0.25.12",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unicorn": "^64.0.0",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"ignore": "^5.3.2",
"lint-staged": "^17.0.4",
"markdown-it": "^14.1.1",
"openai": "^6.35.0",
"prettier": "^3.8.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3"
},
"dependencies": {
"ejs": "^5.0.2",
"zod": "^4.4.3"
},
"lint-staged": {
"*.{ts,js,mjs,cjs}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,css,html}": [
"prettier --write"
]
}
}