UNPKG

create-vite-vercel-y

Version:

A cli to create vite app, push to github and deploy to vercel

92 lines (91 loc) 2.14 kB
{ "name": "create-vite-vercel-y", "type": "module", "version": "0.1.0", "packageManager": "yarn@1.22.19", "description": "", "author": "gumingWu", "license": "MIT", "homepage": "https://github.com/gumingWu/create-vite-vercel-y#readme", "repository": { "type": "git", "url": "git+https://github.com/gumingWu/create-vite-vercel-y.git" }, "bugs": "https://github.com/gumingWu/create-vite-vercel-y/issues", "keywords": [ "create-vite", "vercel", "vite-deploy" ], "sideEffects": false, "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.cjs", "import": "./dist/index.mjs" } }, "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "typesVersions": { "*": { "*": [ "./dist/*", "./dist/index.d.ts" ] } }, "bin": { "create-vite-vercel-y": "index.js", "cvvy": "index.js" }, "files": [ "dist", "patches" ], "scripts": { "build": "unbuild", "dev": "unbuild --stub", "lint": "eslint .", "prepublishOnly": "nr build", "release": "bumpp && npm publish", "start": "esno src/index.ts", "test": "vitest", "typecheck": "tsc --noEmit", "postinstall": "patch-package" }, "dependencies": { "@clack/prompts": "^0.6.3", "@octokit/core": "^4.2.0", "cac": "^6.7.14", "create-vite": "4.3.1", "fs-extra": "^11.1.1", "kolorist": "^1.8.0", "ofetch": "^1.0.1", "patch-package": "^7.0.0", "postinstall-postinstall": "^2.1.0", "simple-git": "^3.18.0" }, "devDependencies": { "@antfu/eslint-config": "^0.38.5", "@antfu/ni": "^0.21.3", "@antfu/utils": "^0.7.2", "@octokit/types": "^9.2.0", "@types/fs-extra": "^11.0.1", "@types/node": "^18.16.3", "bumpp": "^9.1.0", "eslint": "^8.39.0", "esno": "^0.16.3", "lint-staged": "^13.2.2", "rimraf": "^5.0.0", "simple-git-hooks": "^2.8.1", "typescript": "^5.0.4", "unbuild": "^1.2.1", "vite": "^4.3.4", "vitest": "^0.31.0" }, "lint-staged": { "*": "eslint --fix" } }