-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.86 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.86 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
123
124
125
126
127
128
129
130
{
"name": "mimicflow",
"displayName": "MimicFlow",
"description": "The Digital Mirror for AI Coding – Cinematic History & Process Visualization.",
"publisher": "devshero",
"version": "1.0.6",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DevsHero/mimicFlow"
},
"icon": "media/icons/mimicflow-logo.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Visualization",
"Other"
],
"keywords": [
"ai",
"coding agent",
"visualization",
"history",
"playback",
"diff",
"refactoring",
"ghost typing",
"cursor",
"cline",
"cinema",
"replay"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension/extension.js",
"contributes": {
"commands": [
{
"command": "mimicflow.openDashboard",
"title": "MimicFlow: Open Dashboard",
"icon": "$(play-circle)"
},
{
"command": "mimicflow.captureChange",
"title": "MimicFlow: Capture Current Change"
},
{
"command": "mimicflow.openPlayer",
"title": "MimicFlow: Open Player"
},
{
"command": "mimicflow.openPlaylist",
"title": "MimicFlow: Open Playlist"
},
{
"command": "mimicflow.triggerTest",
"title": "MimicFlow: Run Test (Generate Sample Ghost)"
},
{
"command": "mimicflow.clearSyncState",
"title": "MimicFlow: Clear Sync State"
},
{
"command": "mimicflow.shareGhostFile",
"title": "MimicFlow: Share Ghost File"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "mimicflow",
"title": "MimicFlow",
"icon": "media/icons/mimicflow-logo.svg"
}
]
},
"views": {
"mimicflow": [
{
"type": "webview",
"id": "mimicflow.dashboard",
"name": "History",
"icon": "$(history)"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "npm run build:extension && npm run build:webview",
"build:extension": "tsc -p tsconfig.json",
"build:webview": "vite build",
"watch": "npm run watch:extension & npm run watch:webview",
"watch:extension": "tsc -watch -p tsconfig.json",
"watch:webview": "vite build --watch",
"dev": "vite",
"package": "vsce package",
"test": "node ./dist/test/runTest.js",
"lint": "eslint src --ext ts,tsx"
},
"devDependencies": {
"@types/diff-match-patch": "^1.0.36",
"@types/node": "^20.10.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitejs/plugin-react": "^4.2.1",
"@vscode/test-electron": "^2.3.8",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-static-copy": "^1.0.0"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@vscode/codicons": "^0.0.44",
"diff-match-patch": "^1.0.5",
"ignore": "^7.0.5",
"monaco-editor": "^0.45.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}