-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.91 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.91 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
{
"name": "shipstatic",
"displayName": "ShipStatic",
"description": "Free, no account needed — deploy static websites, landing pages, and prototypes instantly from chat or the command palette",
"version": "0.2.6",
"publisher": "shipstatic",
"icon": "icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shipstatic/vscode.git"
},
"homepage": "https://shipstatic.com",
"bugs": {
"url": "https://github.com/shipstatic/vscode/issues"
},
"packageManager": "[email protected]",
"engines": {
"vscode": "^1.99.0"
},
"galleryBanner": {
"color": "#EE6723",
"theme": "dark"
},
"categories": [
"AI"
],
"keywords": [
"shipstatic",
"deploy",
"hosting",
"mcp",
"mcp-server",
"model-context-protocol",
"website",
"static-site",
"static-hosting",
"web-hosting",
"vibe-coding",
"ai",
"agent"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"mcpServerDefinitionProviders": [
{
"id": "shipstatic",
"label": "ShipStatic"
}
],
"commands": [
{
"command": "shipstatic.setApiKey",
"title": "ShipStatic: Set API Key"
},
{
"command": "shipstatic.deploy",
"title": "ShipStatic: Deploy"
},
{
"command": "shipstatic.whoami",
"title": "ShipStatic: Account Info"
}
]
},
"scripts": {
"vscode:prepublish": "node esbuild.mjs",
"build": "node esbuild.mjs",
"watch": "node esbuild.mjs --watch",
"test": "vitest",
"package": "vsce package",
"publish": "vsce publish",
"prepare": "husky"
},
"devDependencies": {
"@shipstatic/mcp": "^0.4.3",
"@shipstatic/ship": "^0.8.7",
"@types/vscode": "^1.99.0",
"@vscode/vsce": "^3.0.0",
"esbuild": "^0.25.0",
"husky": "^9.1.7",
"typescript": "^5.9.0",
"vitest": "^3.2.0"
}
}