|
1 | 1 | {
|
2 |
| - "name": "unplugin-vue-jsx-vapor", |
3 |
| - "version": "1.0.9", |
4 |
| - "packageManager": "[email protected]", |
| 2 | + "packageManager": "[email protected]", |
5 | 3 | "description": "Convert Vue JSX to Vapor",
|
6 | 4 | "type": "module",
|
7 | 5 | "keywords": [
|
|
12 | 10 | "transform"
|
13 | 11 | ],
|
14 | 12 | "license": "MIT",
|
15 |
| - "homepage": "https://github.com/zhiyuanzmj/unplugin-vue-jsx-vapor#readme", |
| 13 | + "homepage": "https://github.com/unplugin/unplugin-vue-jsx-vapor#readme", |
16 | 14 | "bugs": {
|
17 |
| - "url": "https://github.com/zhiyuanzmj/unplugin-vue-jsx-vapor/issues" |
| 15 | + "url": "https://github.com/unplugin/unplugin-vue-jsx-vapor/issues" |
18 | 16 | },
|
19 | 17 | "repository": {
|
20 | 18 | "type": "git",
|
21 |
| - "url": "git+https://github.com/zhiyuanzmj/unplugin-vue-jsx-vapor.git" |
22 |
| - }, |
23 |
| - "files": [ |
24 |
| - "dist" |
25 |
| - ], |
26 |
| - "main": "dist/index.cjs", |
27 |
| - "module": "dist/index.js", |
28 |
| - "types": "dist/index.d.ts", |
29 |
| - "exports": { |
30 |
| - ".": { |
31 |
| - "types": "./dist/index.d.ts", |
32 |
| - "require": "./dist/index.cjs", |
33 |
| - "import": "./dist/index.js" |
34 |
| - }, |
35 |
| - "./astro": { |
36 |
| - "types": "./dist/astro.d.ts", |
37 |
| - "require": "./dist/astro.cjs", |
38 |
| - "import": "./dist/astro.js" |
39 |
| - }, |
40 |
| - "./rspack": { |
41 |
| - "types": "./dist/rspack.d.ts", |
42 |
| - "require": "./dist/rspack.cjs", |
43 |
| - "import": "./dist/rspack.js" |
44 |
| - }, |
45 |
| - "./vite": { |
46 |
| - "types": "./dist/vite.d.ts", |
47 |
| - "require": "./dist/vite.cjs", |
48 |
| - "import": "./dist/vite.js" |
49 |
| - }, |
50 |
| - "./webpack": { |
51 |
| - "types": "./dist/webpack.d.ts", |
52 |
| - "require": "./dist/webpack.cjs", |
53 |
| - "import": "./dist/webpack.js" |
54 |
| - }, |
55 |
| - "./rollup": { |
56 |
| - "types": "./dist/rollup.d.ts", |
57 |
| - "require": "./dist/rollup.cjs", |
58 |
| - "import": "./dist/rollup.js" |
59 |
| - }, |
60 |
| - "./esbuild": { |
61 |
| - "types": "./dist/esbuild.d.ts", |
62 |
| - "require": "./dist/esbuild.cjs", |
63 |
| - "import": "./dist/esbuild.js" |
64 |
| - }, |
65 |
| - "./nuxt": { |
66 |
| - "types": "./dist/nuxt.d.ts", |
67 |
| - "require": "./dist/nuxt.cjs", |
68 |
| - "import": "./dist/nuxt.js" |
69 |
| - }, |
70 |
| - "./types": { |
71 |
| - "types": "./dist/types.d.ts", |
72 |
| - "require": "./dist/types.cjs", |
73 |
| - "import": "./dist/types.js" |
74 |
| - }, |
75 |
| - "./compiler": { |
76 |
| - "types": "./dist/core/compiler/index.d.ts", |
77 |
| - "require": "./dist/core/compiler/index.cjs", |
78 |
| - "import": "./dist/core/compiler/index.js" |
79 |
| - }, |
80 |
| - "./*": "./*" |
81 |
| - }, |
82 |
| - "typesVersions": { |
83 |
| - "*": { |
84 |
| - "*": [ |
85 |
| - "./dist/*", |
86 |
| - "./*" |
87 |
| - ] |
88 |
| - } |
| 19 | + "url": "git+https://github.com/unplugin/unplugin-vue-jsx-vapor.git" |
89 | 20 | },
|
90 | 21 | "scripts": {
|
91 |
| - "build": "tsup", |
92 |
| - "dev": "tsup --watch src", |
93 |
| - "build:fix": "esno scripts/postbuild.ts", |
94 |
| - "typecheck": "tsc --noEmit", |
| 22 | + "dev": "pnpm run --filter=\"./packages/*\" --parallel dev", |
| 23 | + "build": "pnpm run --filter=\"./packages/*\" build", |
| 24 | + "typecheck": "pnpm run --filter=\"./packages/*\" --parallel typecheck", |
| 25 | + "publish": "pnpm build && changeset publish", |
95 | 26 | "lint": "eslint .",
|
96 | 27 | "play": "npm -C playground run dev",
|
97 |
| - "release": "bumpp && npm publish", |
98 |
| - "publish": "pnpm build && changeset publish", |
99 |
| - "start": "esno src/index.ts", |
100 | 28 | "test": "vitest"
|
101 | 29 | },
|
102 |
| - "peerDependencies": { |
103 |
| - "@nuxt/kit": "^3", |
104 |
| - "@nuxt/schema": "^3", |
105 |
| - "esbuild": "*", |
106 |
| - "rollup": "^3", |
107 |
| - "vite": ">=3", |
108 |
| - "webpack": "^4 || ^5" |
109 |
| - }, |
110 |
| - "peerDependenciesMeta": { |
111 |
| - "@nuxt/kit": { |
112 |
| - "optional": true |
113 |
| - }, |
114 |
| - "@nuxt/schema": { |
115 |
| - "optional": true |
116 |
| - }, |
117 |
| - "esbuild": { |
118 |
| - "optional": true |
119 |
| - }, |
120 |
| - "rollup": { |
121 |
| - "optional": true |
122 |
| - }, |
123 |
| - "vite": { |
124 |
| - "optional": true |
125 |
| - }, |
126 |
| - "webpack": { |
127 |
| - "optional": true |
128 |
| - } |
129 |
| - }, |
130 |
| - "dependencies": { |
131 |
| - "@babel/parser": "^7.24.7", |
132 |
| - "@babel/types": "^7.24.7", |
133 |
| - "@vue-macros/common": "^1.10.4", |
134 |
| - "@vue/compiler-core": "https://pkg.pr.new/vuejs/core-vapor/@vue/compiler-core@2eae25e", |
135 |
| - "@vue/compiler-dom": "https://pkg.pr.new/vuejs/core-vapor/@vue/compiler-dom@2eae25e", |
136 |
| - "@vue/compiler-vapor": "https://pkg.pr.new/vuejs/core-vapor/@vue/compiler-vapor@2eae25e", |
137 |
| - "@vue/runtime-vapor": "https://pkg.pr.new/vuejs/core-vapor/@vue/runtime-vapor@2eae25e", |
138 |
| - "@vue/shared": "https://pkg.pr.new/vuejs/core-vapor/@vue/shared@2eae25e", |
139 |
| - "magic-string-stack": "^0.1.1", |
140 |
| - "source-map-js": "^1.2.0", |
141 |
| - "unplugin": "^1.11.0", |
142 |
| - "vue": "https://pkg.pr.new/vuejs/core-vapor/vue@2eae25e" |
143 |
| - }, |
144 | 30 | "devDependencies": {
|
145 | 31 | "@antfu/eslint-config": "^2.21.2",
|
| 32 | + "@babel/parser": "^7.24.7", |
| 33 | + "@babel/types": "^7.24.7", |
146 | 34 | "@changesets/changelog-github": "^0.5.0",
|
147 | 35 | "@changesets/cli": "^2.27.7",
|
148 |
| - "@nuxt/kit": "^3.12.3", |
149 |
| - "@nuxt/schema": "^3.12.3", |
150 | 36 | "@sxzz/eslint-config": "^3.13.0",
|
151 | 37 | "@types/node": "^20.14.9",
|
152 | 38 | "bumpp": "^9.4.1",
|
153 | 39 | "chalk": "^5.3.0",
|
| 40 | + "conventional-changelog-cli": "^5.0.0", |
154 | 41 | "eslint": "^9.6.0",
|
155 | 42 | "esno": "^4.7.0",
|
156 | 43 | "fast-glob": "^3.3.2",
|
157 | 44 | "nodemon": "^3.1.4",
|
158 | 45 | "rimraf": "^5.0.7",
|
159 |
| - "rollup": "^4.18.0", |
160 | 46 | "tsup": "^8.1.0",
|
161 |
| - "typescript": "^5.5.3", |
162 |
| - "vite": "^5.3.2", |
163 |
| - "vitest": "^1.6.0", |
164 |
| - "webpack": "^5.92.1" |
| 47 | + "typescript": "^5.7.0", |
| 48 | + "unplugin": "^1.11.0", |
| 49 | + "vitest": "^1.6.0" |
165 | 50 | }
|
166 | 51 | }
|
0 commit comments