{
"name": "glif-server",
"version": "0.1.0",
"description": "Run AI magic workflows from glif.app",
"private": true,
"type": "module",
"bin": {
"glif-server": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector -e GLIF_API_TOKEN=xxx node build/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.6.1",
"wretch": "^2.11.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.9",
"@vitest/coverage-v8": "^3.0.7",
"typescript": "^5.8.2",
"vitest": "^3.0.7"
}
}