Add script generation utility service. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
478 B
JSON
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"
|
|
}
|
|
}
|