|
| 1 | +{ |
| 2 | + "name": "unplugin-vue-named-export", |
| 3 | + "version": "0.0.0", |
| 4 | + "packageManager": "[email protected]", |
| 5 | + "description": "Named export for Vue SFC.", |
| 6 | + "keywords": [ |
| 7 | + "unplugin", |
| 8 | + "rollup", |
| 9 | + "vite", |
| 10 | + "esbuild", |
| 11 | + "webpack" |
| 12 | + ], |
| 13 | + "license": "MIT", |
| 14 | + "homepage": "https://github.com/sxzz/unplugin-vue-named-export#readme", |
| 15 | + "bugs": { |
| 16 | + "url": "https://github.com/sxzz/unplugin-vue-named-export/issues" |
| 17 | + }, |
| 18 | + "repository": { |
| 19 | + "type": "git", |
| 20 | + "url": "git+https://github.com/sxzz/unplugin-vue-named-export.git" |
| 21 | + }, |
| 22 | + "author": "三咲智子 <[email protected]>", |
| 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 | + "types": "./dist/index.d.ts", |
| 32 | + "require": "./dist/index.js", |
| 33 | + "import": "./dist/index.mjs" |
| 34 | + }, |
| 35 | + "./vite": { |
| 36 | + "types": "./dist/vite.d.ts", |
| 37 | + "require": "./dist/vite.js", |
| 38 | + "import": "./dist/vite.mjs" |
| 39 | + }, |
| 40 | + "./webpack": { |
| 41 | + "types": "./dist/webpack.d.ts", |
| 42 | + "require": "./dist/webpack.js", |
| 43 | + "import": "./dist/webpack.mjs" |
| 44 | + }, |
| 45 | + "./rollup": { |
| 46 | + "types": "./dist/rollup.d.ts", |
| 47 | + "require": "./dist/rollup.js", |
| 48 | + "import": "./dist/rollup.mjs" |
| 49 | + }, |
| 50 | + "./esbuild": { |
| 51 | + "types": "./dist/esbuild.d.ts", |
| 52 | + "require": "./dist/esbuild.js", |
| 53 | + "import": "./dist/esbuild.mjs" |
| 54 | + }, |
| 55 | + "./*": "./*" |
| 56 | + }, |
| 57 | + "typesVersions": { |
| 58 | + "<=4.9": { |
| 59 | + "*": [ |
| 60 | + "./dist/*", |
| 61 | + "./*" |
| 62 | + ] |
| 63 | + } |
| 64 | + }, |
| 65 | + "publishConfig": { |
| 66 | + "access": "public" |
| 67 | + }, |
| 68 | + "scripts": { |
| 69 | + "lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.json,.md", |
| 70 | + "lint:fix": "pnpm run lint --fix", |
| 71 | + "build": "tsup && tsx scripts/postbuild.mts", |
| 72 | + "dev": "tsup --watch", |
| 73 | + "test": "vitest", |
| 74 | + "release": "bumpp && pnpm publish", |
| 75 | + "prepublishOnly": "pnpm run build" |
| 76 | + }, |
| 77 | + "dependencies": { |
| 78 | + "@rollup/pluginutils": "^5.0.2", |
| 79 | + "@vue-macros/common": "^1.1.1", |
| 80 | + "change-case": "^4.1.2", |
| 81 | + "magic-string": "^0.30.0", |
| 82 | + "unplugin": "^1.1.0" |
| 83 | + }, |
| 84 | + "devDependencies": { |
| 85 | + "@babel/types": "^7.21.2", |
| 86 | + "@sxzz/eslint-config": "^2.4.5", |
| 87 | + "@types/node": "^18.14.6", |
| 88 | + "@vue-macros/test-utils": "^1.0.0", |
| 89 | + "bumpp": "^9.0.0", |
| 90 | + "eslint": "^8.35.0", |
| 91 | + "eslint-define-config": "^1.16.0", |
| 92 | + "fast-glob": "^3.2.12", |
| 93 | + "prettier": "^2.8.4", |
| 94 | + "rollup": "^3.18.0", |
| 95 | + "tsup": "^6.6.3", |
| 96 | + "tsx": "^3.12.3", |
| 97 | + "typescript": "^5.0.0-beta", |
| 98 | + "vite": "^4.1.4", |
| 99 | + "vitest": "^0.29.2", |
| 100 | + "vue": "^3.2.47" |
| 101 | + }, |
| 102 | + "engines": { |
| 103 | + "node": ">=14.19.0" |
| 104 | + } |
| 105 | +} |
0 commit comments