-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 2.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 2.01 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
{
"name": "phantom_mcp",
"version": "1.0.0",
"description": "[](https://hex.pm/packages/phantom_mcp) [](https://hexdocs.pm/phantom_mcp)",
"main": "index.js",
"directories": {
"doc": "doc",
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "npm run build:js && npm run build:css",
"build:js": "esbuild assets/js/preview.js --bundle --format=iife --minify --tree-shaking=true --target=es2020 --define:process.env.NODE_ENV=\\\"production\\\" --outfile=priv/static/preview.js",
"build:css": "tailwindcss -i assets/css/preview.css -o priv/static/preview.css --minify",
"build:test": "esbuild test/support/app/mcp/js/mcp_app.js --bundle --format=iife --minify --tree-shaking=true --target=es2020 --define:process.env.NODE_ENV=\\\"production\\\" --outfile=test/support/app/priv/static/mcp_app.js",
"watch": "npm run watch:js & npm run watch:css & npm run watch:test & wait",
"watch:js": "esbuild assets/js/preview.js --bundle --format=iife --target=es2020 --define:process.env.NODE_ENV=\\\"development\\\" --outfile=priv/static/preview.js --watch",
"watch:css": "tailwindcss -i assets/css/preview.css -o priv/static/preview.css --watch",
"watch:test": "esbuild test/support/app/mcp/js/mcp_app.js --bundle --format=iife --target=es2020 --define:process.env.NODE_ENV=\\\"development\\\" --outfile=test/support/app/priv/static/mcp_app.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbernheisel/phantom_mcp.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dbernheisel/phantom_mcp/issues"
},
"homepage": "https://github.com/dbernheisel/phantom_mcp#readme",
"dependencies": {
"@mcp-ui/client": "^7.0.0",
"@modelcontextprotocol/ext-apps": "^1.7.0"
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.4",
"esbuild": "^0.28.0",
"tailwindcss": "^4.2.4"
}
}