@gati-framework/cli
Version:
CLI tool for Gati framework - create, develop, build and deploy cloud-native applications
101 lines (100 loc) • 2.55 kB
JSON
{
"name": "@gati-framework/cli",
"version": "1.0.19",
"description": "CLI tool for Gati framework - create, develop, build and deploy cloud-native applications",
"license": "MIT",
"type": "module",
"bin": {
"gati": "./dist/index.js",
"gatic": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./dist/index.js": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./utils/watcher": {
"types": "./dist/utils/watcher.d.ts",
"import": "./dist/utils/watcher.js"
},
"./utils/env-loader": {
"types": "./dist/utils/env-loader.d.ts",
"import": "./dist/utils/env-loader.js"
},
"./utils/bundler": {
"types": "./dist/utils/bundler.d.ts",
"import": "./dist/utils/bundler.js"
},
"./utils/validator": {
"types": "./dist/utils/validator.d.ts",
"import": "./dist/utils/validator.js"
},
"./utils/file-generator": {
"types": "./dist/utils/file-generator.d.ts",
"import": "./dist/utils/file-generator.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && node ./scripts/copy-templates.cjs",
"clean": "rimraf dist",
"dev": "tsc -p tsconfig.build.json --watch",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@gati-framework/core": "^0.4.5",
"@gati-framework/runtime": "^2.0.8",
"@gati-framework/types": "^1.0.1",
"chalk": "^5.6.2",
"chokidar": "^4.0.3",
"commander": "^14.0.2",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"fs-extra": "^11.3.2",
"glob": "^11.0.3",
"ora": "^9.0.0",
"prompts": "^2.4.2",
"ts-morph": "^27.0.2",
"tsx": "^4.20.6"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.0",
"@types/prompts": "^2.4.9",
"rimraf": "^5.0.5",
"typescript": "^5.3.2",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"gati",
"cli",
"framework",
"cloud-native",
"kubernetes",
"deployment",
"serverless"
],
"repository": {
"type": "git",
"url": "git+https://github.com/krishnapaul242/gati.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/krishnapaul242/gati/issues"
},
"homepage": "https://github.com/krishnapaul242/gati#readme"
}