package.json•1.93 kB
{
"name": "@glifxyz/glif-mcp-server",
"version": "0.9.9",
"description": "Run AI magic workflows from glif.app",
"license": "MIT",
"author": "glifxyz",
"repository": "github:glifxyz/glif-mcp-server",
"type": "module",
"bin": "./build/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"format": "biome format --write .",
"lint": "npm run typecheck && biome check .",
"lint:fix": "npm run typecheck && biome check --write .",
"test": "GLIF_API_TOKEN=xxx IGNORE_DISCOVERY_TOOLS=true vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"inspector": "npx @modelcontextprotocol/inspector -e GLIF_API_TOKEN=xxx node build/index.js",
"logs:claude": "tail -f -n 5 ~/Library/Logs/Claude/**glif*.log",
"logs:claude_all": "tail -f -n 5 ~/Library/Logs/Claude/**.log",
"release": "BRANCH=$(git branch --show-current) && [ \"$BRANCH\" = \"main\" ] || (echo \"Error: Must be on main branch to release\" && exit 1) && VERSION=$(jq -r .version package.json) && REPO=$(gh repo view --json nameWithOwner -q .nameWithOwner) && git tag v$VERSION && git push origin --tags && PREV_TAG=$(git describe --tags --abbrev=0 v$VERSION^ 2>/dev/null || echo '') && NOTES=$(git log --pretty=format:\"- [%h](https://github.com/$REPO/commit/%H) %s\" ${PREV_TAG:+$PREV_TAG..}HEAD) && gh release create v$VERSION --fail-on-no-commits --notes \"$NOTES\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.17.5",
"wretch": "^2.11.0",
"zod": "^4.1.5"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/node": "^24.3.1",
"@vitest/coverage-v8": "^3.2.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}