@shiplightai/mcp2 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@shiplightai/mcp2",
3
+ "version": "0.1.0",
4
+ "description": "Stripped MCP server for UI exploration — browser tools only, no cloud dependency",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "type": "module",
8
+ "bin": {
9
+ "shiplight-mcp2": "./dist/index.js"
10
+ },
11
+ "scripts": {
12
+ "build": "tsup",
13
+ "dev": "tsx watch src/index.ts",
14
+ "start": "tsx src/index.ts",
15
+ "typecheck": "tsc --noEmit",
16
+ "clean": "rm -rf dist"
17
+ },
18
+ "dependencies": {
19
+ "@modelcontextprotocol/sdk": "^0.5.0",
20
+ "dotenv": "^16.0.3",
21
+ "playwright": "1.55.0",
22
+ "sharp": "^0.32.0",
23
+ "zod": "^3.22.0",
24
+ "zod-to-json-schema": "^3.24.6"
25
+ },
26
+ "devDependencies": {
27
+ "@types/node": "^24.0.0",
28
+ "tsup": "^8.3.5",
29
+ "tsx": "^4.20.3",
30
+ "typescript": "^5.3.0"
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "README.md"
35
+ ]
36
+ }