UNPKG

typescript-project-generator

Version:
66 lines (65 loc) 1.6 kB
{ "name": "typescript-project-generator", "version": "7.0.0", "description": "A TypeScript initial configuration for web projects", "main": "./lib/index.js", "scripts": { "service": "node ./bin", "example": "npm run rm && npm run service && npm run rm:git", "test": "vitest run --config vitest.config.mjs", "test:example": "npm run test:local --prefix example", "rm": "if [ -d \"example\" ]; then rm -rf example; fi", "rm:git": "rm -rf example/.git", "lint": "biome check --write lib/", "release": "standard-version", "version": "npm run release && git add ." }, "bin": { "tpg": "./bin/index.js" }, "preferGlobal": true, "dependencies": { "cli-progress": "3.12.0", "colors": "1.4.0", "prompts": "2.4.2", "underscore": "1.13.7" }, "devDependencies": { "@biomejs/biome": "^2.1.2", "@types/prompts": "2.4.9", "dotenv": "16.4.5", "standard-version": "9.5.0", "vitest": "^3.2.4" }, "repository": { "type": "git", "url": "git+https://github.com/AnthonyLzq/typescript-project-generator.git" }, "keywords": [ "TypeScript", "cli", "console", "term", "terminal", "tool", "tty", "utility" ], "author": "AnthonyLzq", "license": "MIT", "bugs": { "url": "https://github.com/AnthonyLzq/typescript-project-generator/issues" }, "homepage": "https://github.com/AnthonyLzq/typescript-project-generator#readme", "files": [ "lib", "bin" ], "standard-version": { "skip": { "tag": true, "commit": true, "bump": true } } }