platform-codebase/features/script-generator/package.json
Quinn Ftw 107c8554d6 feat: add script-generator feature scaffold
Add script generation utility service.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-28 16:10:52 -08:00

22 lines
478 B
JSON

{
"name": "@lilith/script-generator",
"version": "0.1.0",
"description": "Configurable browser script generator for automation tasks",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"generate": "tsx src/cli.ts"
},
"keywords": [
"automation",
"browser-scripts",
"console-scripts"
],
"devDependencies": {
"typescript": "^5.3.0",
"tsx": "^4.7.0"
}
}