twenty-cli serverless triggers follow up. Fixes: - eventName don't support wildcard - universalIdentifier not used to create or update trigger : update does not work properly (does deletion then creation) - add a base project in twenty-cli that is copied when creating a new app
49 lines
1.0 KiB
JSON
49 lines
1.0 KiB
JSON
{
|
|
"name": "twenty-cli",
|
|
"version": "0.1.0",
|
|
"description": "Command-line interface for Twenty application development",
|
|
"main": "dist/cli.js",
|
|
"bin": {
|
|
"twenty": "dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "echo 'use npx nx build'",
|
|
"dev": "tsx src/cli.ts",
|
|
"start": "node dist/cli.js"
|
|
},
|
|
"keywords": [
|
|
"twenty",
|
|
"cli",
|
|
"crm",
|
|
"application",
|
|
"development"
|
|
],
|
|
"license": "AGPL-3.0",
|
|
"dependencies": {
|
|
"ajv": "^8.12.0",
|
|
"ajv-formats": "^2.1.1",
|
|
"axios": "^1.6.0",
|
|
"chalk": "^5.3.0",
|
|
"chokidar": "^4.0.0",
|
|
"commander": "^12.0.0",
|
|
"dotenv": "^16.4.0",
|
|
"fs-extra": "^11.2.0",
|
|
"inquirer": "^10.0.0",
|
|
"jsonc-parser": "^3.2.0",
|
|
"lodash.kebabcase": "^4.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^11.0.0",
|
|
"@types/inquirer": "^9.0.0",
|
|
"@types/jest": "^29.5.0",
|
|
"@types/lodash.kebabcase": "^4.1.7",
|
|
"@types/node": "^20.0.0",
|
|
"jest": "^29.5.0",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|