@idealyst/cli
Version:
CLI tool for generating Idealyst Framework projects
70 lines • 1.89 kB
JSON
{
"name": "@idealyst/cli",
"version": "1.0.83",
"description": "CLI tool for generating Idealyst Framework projects",
"readme": "README.md",
"main": "dist/index.js",
"bin": {
"idealyst": "dist/index.js",
"idealyst-cli": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/IdealystIO/idealyst-framework.git",
"directory": "packages/cli"
},
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node scripts/build.js",
"build:bash": "scripts/build.sh",
"build:tsc": "npm run clean && tsc && npm run copy-templates",
"build:validate": "npm run build && npm run validate",
"copy-templates": "npm run clean-templates && cp -r templates dist/",
"clean-templates": "rm -rf dist/templates",
"validate": "node scripts/validate-build.js",
"test": "jest",
"test:integration": "jest __tests__/integration.test.ts",
"dev": "tsc --watch",
"clean": "rm -rf dist"
},
"dependencies": {
"chalk": "^5.0.0",
"commander": "^11.0.0",
"fs-extra": "^11.0.0",
"inquirer": "^9.0.0",
"ora": "^7.0.0",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.0",
"@types/inquirer": "^9.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/validate-npm-package-name": "^4.0.0",
"jest": "^29.7.0",
"rollup": "^3.20.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.34.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"files": [
"dist",
"templates",
"docs"
],
"keywords": [
"cli",
"generator",
"react",
"react-native",
"cross-platform",
"idealyst"
]
}