|
1 | 1 | { |
2 | 2 | "name": "vite-plugin-components", |
3 | | - "description": "Components auto importing for Vite", |
4 | 3 | "version": "0.7.3", |
5 | | - "main": "dist/index.js", |
6 | | - "module": "dist/index.mjs", |
7 | | - "types": "dist/index.d.ts", |
8 | | - "license": "MIT", |
9 | | - "author": "antfu <[email protected]>", |
| 4 | + "description": "Components auto importing for Vite", |
| 5 | + "homepage": "https://github.com/antfu/vite-plugin-components", |
| 6 | + "bugs": "https://github.com/antfu/vite-plugin-components/issues", |
10 | 7 | "repository": { |
11 | 8 | "type": "git", |
12 | 9 | "url": "https://github.com/antfu/vite-plugin-components" |
13 | 10 | }, |
14 | 11 | "funding": "https://github.com/sponsors/antfu", |
15 | | - "homepage": "https://github.com/antfu/vite-plugin-components", |
16 | | - "bugs": "https://github.com/antfu/vite-plugin-components/issues", |
| 12 | + "license": "MIT", |
| 13 | + "author": "antfu <[email protected]>", |
| 14 | + "main": "dist/index.js", |
| 15 | + "module": "dist/index.mjs", |
| 16 | + "types": "dist/index.d.ts", |
17 | 17 | "files": [ |
18 | 18 | "dist" |
19 | 19 | ], |
20 | 20 | "scripts": { |
| 21 | + "build": "tsup src/index.ts --dts --format cjs,esm", |
21 | 22 | "dev": "npm run build -- --watch", |
22 | | - "example:dev": "npm -C examples/vue3 run dev", |
23 | 23 | "example:build": "npm -C examples/vue3 run build", |
24 | | - "build": "tsup src/index.ts --dts --format cjs,esm", |
| 24 | + "example:dev": "npm -C examples/vue3 run dev", |
25 | 25 | "prepublishOnly": "npm run build", |
26 | 26 | "release": "npx git-ensure -a && npx bumpp --commit --tag --push", |
27 | 27 | "test": "jest", |
|
33 | 33 | "fast-glob": "npm:@knightly/fast-glob@master", |
34 | 34 | "minimatch": "^3.0.4" |
35 | 35 | }, |
36 | | - "peerDependencies": { |
37 | | - "vite": "^2.0.0-beta.69" |
38 | | - }, |
39 | 36 | "devDependencies": { |
40 | 37 | "@antfu/eslint-config": "^0.4.3", |
41 | 38 | "@types/debug": "^4.1.5", |
|
50 | 47 | "tsup": "^4.2.0", |
51 | 48 | "typescript": "^4.1.5", |
52 | 49 | "vite": "^2.0.2" |
| 50 | + }, |
| 51 | + "peerDependencies": { |
| 52 | + "vite": "^2.0.0-beta.69" |
53 | 53 | } |
54 | 54 | } |
0 commit comments