34 lines
753 B
JSON
34 lines
753 B
JSON
{
|
|
"name": "@follow/cli",
|
|
"type": "module",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Folo CLI for AI agents and power users",
|
|
"bin": {
|
|
"folo": "./dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"skill.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup --config tsup.config.ts && chmod +x dist/index.js",
|
|
"dev": "tsx src/index.ts",
|
|
"start": "node dist/index.js",
|
|
"test": "pnpm run build && vitest run",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@follow-app/client-sdk": "catalog:",
|
|
"commander": "14.0.1",
|
|
"pathe": "2.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@follow/configs": "workspace:*",
|
|
"@types/node": "25.2.3",
|
|
"tsup": "8.5.0",
|
|
"tsx": "4.21.0",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|