grapi-cli
Version:
a cli tool to generate loopback 4 applications with extra features like caching & fuzzy search
90 lines (89 loc) • 2.34 kB
JSON
{
"name": "grapi-cli",
"version": "0.4.15",
"description": "a cli tool to generate loopback 4 applications with extra features like caching & fuzzy search",
"keywords": [
"lb4",
"cli",
"cache",
"fuzzy"
],
"homepage": "https://github.com/aaqilniz/grapi-cli",
"bugs": "https://github.com/aaqilniz/grapi-cli/issues",
"repository": "aaqilniz/grapi-cli",
"license": "MIT",
"author": "Muhammad Aaqil",
"type": "module",
"exports": "./lib/index.js",
"types": "dist/index.d.ts",
"bin": {
"grapi-cli": "./bin/run.js"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json",
"/files",
"/patches"
],
"scripts": {
"build": "shx rm -rf dist && tsc -b && cp -r ./src/files ./dist/files && cp -r ./src/patches ./dist/patches",
"lint": "eslint . --ext .ts",
"prepack": "oclif manifest && oclif readme",
"postpack": "shx rm -f oclif.manifest.json",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "npm run lint",
"version": "oclif readme && git add README.md",
"postinstall": "node ./dist/patches/global-patches.js"
},
"oclif": {
"bin": "grapi-cli",
"commands": "./dist/commands",
"dirname": "grapi-cli",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": ":",
"topics": {
"update": {
"description": "enable updating loopback 4 based models"
}
}
},
"dependencies": {
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^5",
"@types/pluralize": "^0.0.33",
"bcryptjs": "^2.4.3",
"chalk": "^5.3.0",
"pluralize": "^8.0.0",
"ts-morph": "^22.0.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/chai": "^4",
"@types/glob": "^7.2.0",
"@types/mocha": "^10",
"@types/node": "^18.19.55",
"@types/uuid": "^10.0.0",
"chai": "^5",
"eslint": "^9",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9.1.0",
"minimatch": "^3.1.2",
"mocha": "^10",
"oclif": "^4.9.0",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
}
}