-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.75 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
{
"name": "@p31/forge-sdk",
"version": "1.0.0",
"description": "Embed P31 Forge panels — terminal, MCP tools, dockview workspace — into any React app",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" },
"./workspace": { "types": "./dist/workspace.d.ts", "import": "./dist/workspace.js" },
"./terminal": { "types": "./dist/terminal.d.ts", "import": "./dist/terminal.js" },
"./mcp": { "types": "./dist/mcp.d.ts", "import": "./dist/mcp.js" },
"./status-bar": { "types": "./dist/status-bar.d.ts", "import": "./dist/status-bar.js" },
"./types": { "types": "./dist/types.d.ts", "import": "./dist/types.js" }
},
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "tsc",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"dockview": "^1.7.0",
"@xterm/xterm": "^5.5.0",
"@xterm/addon-fit": "^0.10.0",
"@cloudflare/sandbox": "^0.8.0"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0"
},
"publishConfig": { "access": "public" },
"author": "P31 Labs",
"license": "MIT",
"repository": { "type": "git", "url": "https://github.com/p31labs/forge-sdk" },
"homepage": "https://github.com/p31labs/forge-sdk#readme",
"bugs": { "url": "https://github.com/p31labs/forge-sdk/issues" },
"sideEffects": false,
"keywords": ["p31", "forge", "workspace", "dockview", "ide", "developer-tools"]
}