-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 2.87 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
{
"name": "quickmock",
"version": "0.2.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"imports": {
"#*": "./src/*"
},
"scripts": {
"dev": "node --run build -- --watch --sourcemap",
"build": "tsdown",
"check-types": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@lemoncode/quickmock-mcp": "0.1.0"
},
"devDependencies": {
"@lemoncode/quickmock-bridge-protocol": "*",
"@lemoncode/quickmock-registry-protocol": "*",
"@lemoncode/tsdown-config": "*",
"@lemoncode/typescript-config": "*",
"@lemoncode/vitest-config": "*",
"@types/vscode": "1.118.0",
"@vscode/vsce": "3.9.1"
},
"publisher": "Lemoncoders",
"displayName": "Quickmock",
"description": "Quickmock VSCode extension for your free, open source wireframing tool. Share your ideas as low-fidelity mocks in minutes, perfect for getting started.",
"keywords": [
"wireframe",
"mockup",
"prototype",
"low-fidelity",
"design",
"ui",
"ux",
"sketch",
"quickmock"
],
"categories": [
"Visualization",
"Other"
],
"author": "Lemoncode",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Lemoncode/quickmock",
"directory": "packages/vscode-extension"
},
"engines": {
"vscode": "^1.115.0"
},
"icon": "./assets/app-icon.webp",
"galleryBanner": {
"color": "#17191E",
"theme": "dark"
},
"qna": false,
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"languages": [
{
"id": "quickmock",
"extensions": [
".qm"
],
"icon": {
"light": "./assets/file-logo.png",
"dark": "./assets/file-logo.png"
}
}
],
"customEditors": [
{
"viewType": "quickmock.editor",
"displayName": "QuickMock Wireframe Editor",
"selector": [
{
"filenamePattern": "*.qm"
}
],
"priority": "default"
}
],
"commands": [
{
"command": "quickmock.newWireframe",
"title": "QuickMock: New Wireframe"
}
],
"mcpServerDefinitionProviders": [
{
"id": "quickmock",
"label": "QuickMock Wireframe Tools"
}
],
"configuration": {
"title": "QuickMock",
"properties": {
"quickmock.appUrl": {
"type": "string",
"default": "https://quickmock.net/editor.html",
"format": "uri",
"markdownDescription": "Base URL of the QuickMock web app used by the custom editor and the MCP renderer. The extension automatically appends `?env=vscode` for the webview and `&headless=1` for the headless screenshot MCP. Changing this refreshes open editors and respawns the MCP server."
}
}
}
}
}