-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.8 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 4.8 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
{
"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.100.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:node:compiled": "node scripts/run-node-tests.mjs",
"test:node": "npm run compile && npm run test:node:compiled",
"test": "npm run test:node",
"test:conversation-history": "npm run compile && node --test tests/conversationHistoryTree.test.cjs",
"test:conversation-history-store": "npm run compile && node --test tests/conversationHistoryStoreConcurrency.test.cjs",
"test:record-store-concurrency": "npm run compile && node --test tests/recordStoreConcurrency.test.cjs",
"test:storage-infrastructure": "npm run compile && node --test tests/storageInfrastructure.test.cjs",
"test:client-state-skeleton-transaction": "npm run compile && node --test tests/clientStateSkeletonTransaction.test.cjs",
"test:settings-storage-safety": "npm run compile && node --test tests/settingsStorageSafety.test.cjs",
"test:background-command-storage-concurrency": "npm run compile && node --test tests/backgroundCommandStorageConcurrency.test.cjs",
"test:timeline-generation": "npm run compile && node --test tests/timelineGeneration.test.cjs",
"test:run-history-concurrency": "npm run compile && node --test tests/runHistoryConcurrency.test.cjs",
"test:persistence-lifecycle-gate": "npm run compile && node --test tests/persistenceLifecycleGate.test.cjs",
"test:data-root-migration-concurrency": "npm run compile && node --test tests/dataRootMigrationConcurrency.test.cjs",
"test:shadow-worktree-lock": "npm run compile && node --test tests/shadowWorktreeLock.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 && npm run test:node:compiled",
"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",
"unified-llm-provider": "^0.1.32"
}
}