ccremote
Version:
Claude Code Remote: approve prompts from Discord, auto-continue sessions after quota resets, and schedule quota windows around your workday.
82 lines (81 loc) • 2.7 kB
JSON
{
"name": "ccremote",
"type": "module",
"version": "0.2.0",
"description": "Claude Code Remote: approve prompts from Discord, auto-continue sessions after quota resets, and schedule quota windows around your workday.",
"author": "ccremote contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/generativereality/ccremote.git"
},
"homepage": "https://ccremote.dev",
"bugs": {
"url": "https://github.com/generativereality/ccremote/issues"
},
"keywords": [
"claude",
"claude-code",
"automation",
"discord",
"remote"
],
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"ccremote": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20.19.4"
},
"scripts": {
"build": "tsdown",
"dev": "bun run ./src/index.ts",
"format": "bun run lint --fix",
"lint": "eslint --cache .",
"prepack": "bun run build",
"prepublishOnly": "npx publint --pack npm",
"check": "bun lint && bun typecheck && vitest run && bun run build",
"release": "echo '🚀 Starting release process...' && git branch --show-current | grep -q '^main$' && bun run check && npm pack && echo '📦 Package created. Testing locally...' && npm install -g ./ccremote-*.tgz && ccremote --version && echo '✅ Local test passed! Creating tag for current version...' && npx bumpp $(node -p \"require('./package.json').version\") --yes && npm publish && echo '🎉 Release complete!'",
"release:test": "bun run check && npm pack && npm install -g ./ccremote-*.tgz && ccremote --version && echo '✅ Package tests passed!'",
"start": "bun run ./src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"docs:dev": "cd docs && bun run dev",
"docs:build": "cd docs && bun run build",
"docs:preview": "cd docs && bun run preview",
"docs:deploy": "cd docs && bun run deploy",
"docs:deploy:prod": "cd docs && bun run deploy:prod"
},
"devDependencies": {
"@clack/prompts": "^0.11.0",
"@ryoppippi/eslint-config": "^0.3.7",
"@types/bun": "^1.2.20",
"@types/node": "^20.11.16",
"@types/update-notifier": "^6.0.8",
"bumpp": "^10.2.3",
"eslint": "^9.33.0",
"eslint-plugin-format": "^1.0.1",
"gunshi": "^0.26.3",
"publint": "^0.3.12",
"tsdown": "^0.15.7",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
},
"dependencies": {
"consola": "^3.4.2",
"discord.js": "^14.14.1",
"dotenv": "^17.2.2",
"pm2": "^6.0.10",
"update-notifier": "^7.3.1",
"zod": "^3.25.67"
}
}