@chameleonmind/vue-migrate
Version:
A CLI tool to help with migrating projects from Vue2 with Vue CLI to Vue2/Vue3 with Vite
70 lines (69 loc) • 1.71 kB
JSON
{
"name": "@chameleonmind/vue-migrate",
"version": "0.0.1",
"description": "A CLI tool to help with migrating projects from Vue2 with Vue CLI to Vue2/Vue3 with Vite",
"private": false,
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"type": "module",
"files": [
"lib"
],
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"bin": {
"vue-migrate": "./lib/index.js"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "test",
"format": "eslint --fix",
"publish-lib": "eslint --fix && changeset version && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chameleonmind/vue-migrate.git"
},
"keywords": [
"Vue2",
"Vue3",
"VueCLI",
"Vite",
"migration",
"tool"
],
"author": "Milos Milosevic",
"license": "MIT",
"bugs": {
"url": "https://github.com/chameleonmind/vue-migrate/issues"
},
"homepage": "https://github.com/chameleonmind/vue-migrate#readme",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^18.15.9",
"@types/yargs": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"tsup": "^6.7.0",
"typescript": "^5.0.2"
},
"dependencies": {
"@clack/core": "^0.3.2",
"@clack/prompts": "^0.6.3",
"picocolors": "^1.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}