|
| 1 | +{ |
| 2 | + "name": "@skirtle/create-vue-lib", |
| 3 | + "private": true, |
| 4 | + "version": "0.0.0", |
| 5 | + "author": "skirtle", |
| 6 | + "license": "MIT", |
| 7 | + "description": "Create a library using Vue and Vite", |
| 8 | + "keywords": ["vue", "library", "scaffold", "vite", "build"], |
| 9 | + "homepage": "https://github.com/skirtles-code/create-vue-lib#readme", |
| 10 | + "bugs": "https://github.com/skirtles-code/create-vue-lib/issues", |
| 11 | + "repository": { |
| 12 | + "type": "git", |
| 13 | + "url": "git+https://github.com/skirtles-code/create-vue-lib.git" |
| 14 | + }, |
| 15 | + "funding": "https://github.com/sponsors/skirtles-code", |
| 16 | + "type": "module", |
| 17 | + "packageManager": "pnpm@9.15.4", |
| 18 | + "engines": { |
| 19 | + "node": ">=v18.3.0" |
| 20 | + }, |
| 21 | + "bin": { |
| 22 | + "create-vue-lib": "dist/index.cjs" |
| 23 | + }, |
| 24 | + "files": [ |
| 25 | + "dist" |
| 26 | + ], |
| 27 | + "devDependencies": { |
| 28 | + "@tsconfig/node22": "^22.0.0", |
| 29 | + "@types/ejs": "^3.1.5", |
| 30 | + "@types/node": "^22.13.0", |
| 31 | + "@types/prompts": "^2.4.9", |
| 32 | + "copyfiles": "^2.4.1", |
| 33 | + "ejs": "^3.1.10", |
| 34 | + "lint-staged": "^15.4.3", |
| 35 | + "prompts": "^2.4.2", |
| 36 | + "rimraf": "^6.0.1", |
| 37 | + "simple-git-hooks": "^2.11.1", |
| 38 | + "tsup": "^8.3.6", |
| 39 | + "typescript": "^5.7.3" |
| 40 | + }, |
| 41 | + "scripts": { |
| 42 | + "clean": "rimraf dist", |
| 43 | + "build": "pnpm run clean && pnpm run build:copy && pnpm run build:ts", |
| 44 | + "build:copy": "copyfiles -u 1 -a \"src/template/**\" dist", |
| 45 | + "build:ts": "tsup src/index.ts --format cjs --target node18", |
| 46 | + "build:dts": "tsup src/index.ts --dts --format cjs --target node18", |
| 47 | + "start": "node ./dist/index.cjs", |
| 48 | + "preinstall": "npx only-allow pnpm" |
| 49 | + } |
| 50 | +} |
0 commit comments