|
| 1 | +{ |
| 2 | + "name": "unplugin-vue-reactivity-function", |
| 3 | + "version": "0.1.0", |
| 4 | + "packageManager": "[email protected]", |
| 5 | + "description": "Reactivity function for Vue SFC.", |
| 6 | + "keywords": [ |
| 7 | + "unplugin", |
| 8 | + "rollup", |
| 9 | + "vite", |
| 10 | + "esbuild", |
| 11 | + "webpack" |
| 12 | + ], |
| 13 | + "license": "MIT", |
| 14 | + "homepage": "https://github.com/unplugin/unplugin-vue-reactivity-function#readme", |
| 15 | + "bugs": { |
| 16 | + "url": "https://github.com/unplugin/unplugin-vue-reactivity-function/issues" |
| 17 | + }, |
| 18 | + "repository": { |
| 19 | + "type": "git", |
| 20 | + "url": "git+https://github.com/unplugin/unplugin-vue-reactivity-function.git" |
| 21 | + }, |
| 22 | + "author": "zhiyuanzmj", |
| 23 | + "files": [ |
| 24 | + "dist" |
| 25 | + ], |
| 26 | + "main": "./dist/index.js", |
| 27 | + "module": "./dist/index.mjs", |
| 28 | + "types": "./dist/index.d.ts", |
| 29 | + "exports": { |
| 30 | + ".": { |
| 31 | + "require": "./dist/index.js", |
| 32 | + "import": "./dist/index.mjs" |
| 33 | + }, |
| 34 | + "./vite": { |
| 35 | + "require": "./dist/vite.js", |
| 36 | + "import": "./dist/vite.mjs" |
| 37 | + }, |
| 38 | + "./webpack": { |
| 39 | + "require": "./dist/webpack.js", |
| 40 | + "import": "./dist/webpack.mjs" |
| 41 | + }, |
| 42 | + "./rollup": { |
| 43 | + "require": "./dist/rollup.js", |
| 44 | + "import": "./dist/rollup.mjs" |
| 45 | + }, |
| 46 | + "./esbuild": { |
| 47 | + "require": "./dist/esbuild.js", |
| 48 | + "import": "./dist/esbuild.mjs" |
| 49 | + }, |
| 50 | + "./volar": { |
| 51 | + "require": "./dist/volar.js", |
| 52 | + "import": "./dist/volar.mjs" |
| 53 | + }, |
| 54 | + "./*": "./*" |
| 55 | + }, |
| 56 | + "typesVersions": { |
| 57 | + "*": { |
| 58 | + "*": [ |
| 59 | + "./dist/*", |
| 60 | + "./*" |
| 61 | + ] |
| 62 | + } |
| 63 | + }, |
| 64 | + "publishConfig": { |
| 65 | + "access": "public" |
| 66 | + }, |
| 67 | + "scripts": { |
| 68 | + "lint": "eslint --cache .", |
| 69 | + "lint:fix": "pnpm run lint --fix", |
| 70 | + "build": "tsup", |
| 71 | + "dev": "tsup --watch", |
| 72 | + "test": "vitest", |
| 73 | + "play": "pnpm run -C ./playground dev", |
| 74 | + "release": "bumpp && pnpm publish", |
| 75 | + "prepublishOnly": "pnpm run build" |
| 76 | + }, |
| 77 | + "dependencies": { |
| 78 | + "@vue-macros/common": "^1.8.0", |
| 79 | + "unplugin": "^1.5.0" |
| 80 | + }, |
| 81 | + "devDependencies": { |
| 82 | + "@babel/types": "^7.23.0", |
| 83 | + "@sxzz/eslint-config": "^3.7.0", |
| 84 | + "@sxzz/prettier-config": "^1.0.4", |
| 85 | + "@types/node": "^20.8.9", |
| 86 | + "@vue-macros/test-utils": "^1.2.0", |
| 87 | + "@vue/language-core": "^1.8.22", |
| 88 | + "bumpp": "^9.2.0", |
| 89 | + "change-case": "^5.1.2", |
| 90 | + "eslint": "^8.52.0", |
| 91 | + "eslint-define-config": "^1.24.1", |
| 92 | + "fast-glob": "^3.3.1", |
| 93 | + "prettier": "^3.0.3", |
| 94 | + "tsup": "^7.2.0", |
| 95 | + "tsx": "^3.14.0", |
| 96 | + "typescript": "^5.2.2", |
| 97 | + "vite": "^4.5.0", |
| 98 | + "vitest": "^0.34.6", |
| 99 | + "vue": "^3.3.7" |
| 100 | + }, |
| 101 | + "engines": { |
| 102 | + "node": ">=16.14.0" |
| 103 | + }, |
| 104 | + "prettier": "@sxzz/prettier-config" |
| 105 | +} |
0 commit comments