12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- {
- "name": "v-code-diff",
- "type": "module",
- "version": "1.12.0",
- "description": "template component for vue-demi, can dev and build",
- "license": "MIT",
- "exports": {
- ".": {
- "types": "./types/index.d.ts",
- "import": "./dist/index.es.js",
- "require": "./dist/index.cjs.js"
- }
- },
- "main": "dist/index.cjs",
- "module": "dist/index.es.js",
- "types": "./types/index.d.ts",
- "files": [
- "dist",
- "scripts",
- "src",
- "types"
- ],
- "scripts": {
- "build": "npm run clean && run-s build:**",
- "build:2": "vue-demi-switch 2 vue2 && pnpm --filter vue2-playground build",
- "build:2:umd": "vue-demi-switch 2 vue2 && format=umd pnpm --filter vue2-playground build",
- "build:2.7": "vue-demi-switch 2.7 vue2 && pnpm --filter vue2.7-playground build",
- "build:2.7:umd": "vue-demi-switch 2.7 vue2 && format=umd pnpm --filter vue2.7-playground build",
- "build:3": "vue-demi-switch 3 vue3 && pnpm --filter vue3-playground build",
- "build:3:umd": "vue-demi-switch 3 vue3 && format=umd pnpm --filter vue3-playground build",
- "clean": "rimraf ./dist",
- "deploy:demo": "pnpm --filter demo gh-pages",
- "dev:2": "vue-demi-switch 2 vue2 && pnpm --filter vue2-playground dev",
- "dev:2.7": "vue-demi-switch 2.7 vue2 && pnpm --filter vue2.7-playground dev",
- "dev:3": "vue-demi-switch 3 vue3 && pnpm --filter vue3-playground dev",
- "dev:demo": "vue-demi-switch 3 vue3 && pnpm --filter demo dev",
- "lint": "eslint .",
- "lint:fix": "eslint . --ext .vue,.js,.jsx,.ts,.tsx,json --fix --ignore-path .gitignore",
- "postinstall": "node scripts/postinstall.cjs",
- "prepublishOnly": "npm run build",
- "release": "bumpp --commit --no-push --tag && npm publish"
- },
- "peerDependencies": {
- "@vue/composition-api": "^1.4.9",
- "vue": "^2.6.0 || >=3.0.0"
- },
- "peerDependenciesMeta": {
- "@vue/composition-api": {
- "optional": true
- }
- },
- "dependencies": {
- "diff": "^5.1.0",
- "diff-match-patch": "^1.0.5",
- "highlight.js": "^11.9.0",
- "vue-demi": "^0.14.6",
- "vue-i18n": "9"
- },
- "devDependencies": {
- "@antfu/eslint-config": "^2.4.5",
- "@types/diff": "^5.0.0",
- "@types/diff-match-patch": "^1.0.32",
- "@types/node": "^18.11.18",
- "@unocss/eslint-plugin": "^0.58.0",
- "@vueuse/core": "^10.7.0",
- "bumpp": "^8.2.1",
- "eslint": "^8.55.0",
- "npm-run-all": "^4.1.5",
- "rimraf": "^3.0.2",
- "sass": "^1.69.5",
- "typescript": "~4.7.4",
- "vite": "^4.5.1",
- "vite-plugin-css-injected-by-js": "^2.4.0",
- "vue": "^3.3.11",
- "vue-tsc": "^0.40.13",
- "vue2": "npm:vue@2",
- "vue3": "npm:vue@3"
- },
- "pnpm": {
- "packageExtensions": {
- "vue-template-compiler": {
- "peerDependencies": {
- "vue": "~2.6.14"
- }
- }
- }
- }
- }
|