UNPKG

create-lemon

Version:
93 lines 2.21 kB
{ "name": "create-lemon", "version": "0.6.0", "type": "module", "description": "The Elegant Bundler for Libraries", "author": { "name": "sankeyangshu", "email": "sankeyangshu@gmail.com", "url": "https://github.com/sankeyangshu" }, "license": "MIT", "homepage": "https://github.com/sankeyangshu/create-template#readme", "repository": { "type": "git", "url": "git+https://github.com/sankeyangshu/create-template.git" }, "bugs": { "url": "https://github.com/sankeyangshu/create-template/issues" }, "keywords": [ "lemon-create", "create-template", "typescript", "vue", "react", "vscode", "lemon-react", "lemon-vue" ], "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "files": [ "dist" ], "engines": { "node": "^18.18.0 || >=20.0.0" }, "exports": { ".": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" }, "./package.json": "./package.json" }, "bin": { "create-lemon": "./dist/index.mjs" }, "publishConfig": { "access": "public" }, "dependencies": { "@clack/prompts": "^0.11.0", "ansis": "^4.2.0", "cac": "^6.7.14", "debug": "^4.4.3", "giget": "^2.0.0" }, "devDependencies": { "@commitlint/cli": "^20.1.0", "@commitlint/config-conventional": "^20.0.0", "@sankeyangshu/eslint-config": "^2.5.0", "@types/debug": "^4.1.12", "@types/node": "^24.10.1", "bumpp": "^10.3.1", "eslint": "^9.39.1", "execa": "^9.6.0", "lint-staged": "^16.2.7", "simple-git-hooks": "^2.13.1", "tsdown": "^0.16.7", "tsx": "^4.20.6", "typescript": "^5.9.3", "vitest": "^4.0.14" }, "simple-git-hooks": { "pre-commit": "pnpm typecheck && pnpm lint-staged", "commit-msg": "pnpm exec commitlint --edit $1" }, "lint-staged": { "*": "eslint --fix" }, "scripts": { "build": "tsdown", "dev": "tsdown --watch", "start": "tsx src/index.ts", "lint": "eslint", "lint:fix": "eslint --fix", "test": "vitest", "typecheck": "tsc --noEmit", "release": "bumpp && pnpm publish", "preinstall": "npx only-allow pnpm" } }