jatg
Version:
Just Another Template Generator
58 lines (57 loc) • 1.36 kB
JSON
{
"name": "jatg",
"version": "1.3.2",
"description": "Just Another Template Generator",
"author": "Guilherme Chaguri",
"license": "MIT",
"keywords": [
"template",
"template-generator",
"schematics",
"blueprints",
"code generation",
"boilerplate"
],
"repository": {
"type": "git",
"url": "https://github.com/Guichaguri/jatg.git"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/cli.js",
"man": [
"./man/jatg.1"
],
"files": [
"dist/**/*",
"man/**/*",
"templates.schema.json"
],
"scripts": {
"build": "tsc",
"build:man": "help2man --no-info -o ./man/jatg.1 jatg",
"test": "vitest --coverage",
"prepublishOnly": "npm run build",
"cli": "tsx ./src/cli.ts",
"sample:backend": "npm run cli -- --base-path ./samples/backend",
"sample:frontend": "npm run cli -- --base-path ./samples/frontend"
},
"dependencies": {
"chalk": "^5.4.1",
"change-case": "^5.4.4",
"commander": "^12.1.0",
"ora": "^8.2.0",
"pluralize": "^8.0.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/pluralize": "^0.0.33",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^3.1.1",
"@vitest/ui": "^3.1.1",
"tsx": "^4.19.3",
"typescript": "^5.5.3",
"vitest": "^3.1.1"
}
}