forked from Lianues/limcode2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.42 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
{
"name": "limcode",
"displayName": "LimCode",
"description": "VS Code extension with a TypeScript ECS backend, Vue webview frontend, and a basic AI chat flow.",
"version": "0.0.1",
"publisher": "your-publisher",
"private": true,
"engines": {
"vscode": "^1.89.0"
},
"categories": [
"Other"
],
"main": "./dist/extension/vscode/extension.js",
"activationEvents": [
"onWebviewPanel:limcode.mainPanel"
],
"contributes": {
"commands": [
{
"command": "limcode.openPanel",
"title": "LimCode: Open AI Chat",
"category": "LimCode"
},
{
"command": "limcode.revealGlobalStorage",
"title": "LimCode: Reveal Data Storage Folder",
"category": "LimCode"
}
],
"keybindings": [
{
"command": "limcode.applyLiveDiffPreview",
"key": "ctrl+s",
"mac": "cmd+s",
"when": "resourceScheme == limcode-live-diff"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "limcode-sidebar",
"title": "LIMCODE",
"icon": "assets/icons/activity-bar.svg"
}
]
},
"views": {
"limcode-sidebar": [
{
"id": "limcode-entry-view",
"name": "",
"type": "webview",
"icon": "assets/icons/activity-bar.svg"
}
]
},
"configurationDefaults": {
"workbench.editor.tabSizing": "fixed",
"workbench.editor.tabSizingFixedMinWidth": 160,
"workbench.editor.tabSizingFixedMaxWidth": 160
}
},
"scripts": {
"clean:extension": "node -e \"require('fs').rmSync('dist/extension',{recursive:true,force:true})\"",
"bundle:extension": "node scripts/build-extension.mjs",
"compile": "npm run clean:extension && tsc -p tsconfig.json && npm run bundle:extension",
"watch": "tsc -watch -p tsconfig.json",
"build:webview": "vite build",
"dev:webview": "vite --host 127.0.0.1 --port 31819 --strictPort",
"build": "npm run compile && npm run build:webview",
"typecheck:webview": "vue-tsc -p tsconfig.webview.json --noEmit",
"test:conversation-history": "npm run compile && node --test tests/conversationHistoryTree.test.cjs",
"test:ask-user": "npm run compile && node --test tests/askUserTool.test.cjs",
"test:agent-answer-response": "npm run compile && node --test tests/agentAnswerResponse.test.cjs",
"test:plan-review-attention": "npm run compile && node --test tests/planReviewAttention.test.cjs",
"test:run-agent-interrupt": "npm run compile && node --test tests/runAgentInterrupt.test.cjs",
"test:stable-ids": "npm run compile && node --test tests/stableIdsAndHydration.test.cjs",
"check": "npm run compile && npm run typecheck:webview",
"vscode:prepublish": "npm run build",
"package:local": "vsce package --allow-missing-repository"
},
"devDependencies": {
"@tabler/icons-vue": "^3.44.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.14.10",
"@types/vscode": "^1.89.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.21.5",
"katex": "^0.17.0",
"markdown-it": "^14.2.0",
"markdown-it-texmath": "^1.0.0",
"pinia": "^2.3.1",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vue": "^3.4.31",
"vue-tsc": "^2.0.26"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"tokenx": "^1.3.0",
"undici": "^6.26.0",
"unified-llm-provider": "^0.1.24"
}
}