|
4 | 4 | "description": "Components auto importing for Vite", |
5 | 5 | "homepage": "https://github.com/antfu/vite-plugin-components", |
6 | 6 | "bugs": "https://github.com/antfu/vite-plugin-components/issues", |
| 7 | + "license": "MIT", |
7 | 8 | "repository": { |
8 | 9 | "type": "git", |
9 | 10 | "url": "https://github.com/antfu/vite-plugin-components" |
10 | 11 | }, |
11 | 12 | "funding": "https://github.com/sponsors/antfu", |
12 | | - "license": "MIT", |
13 | 13 | "author": "antfu <anthonyfu117@hotmail.com>", |
14 | | - "main": "dist/index.js", |
15 | | - "module": "dist/index.mjs", |
16 | | - "types": "dist/index.d.ts", |
17 | 14 | "files": [ |
18 | 15 | "dist" |
19 | 16 | ], |
| 17 | + "main": "dist/index.js", |
| 18 | + "module": "dist/index.mjs", |
| 19 | + "types": "dist/index.d.ts", |
20 | 20 | "scripts": { |
21 | 21 | "build": "tsup src/index.ts --dts --format cjs,esm", |
22 | 22 | "dev": "npm run build -- --watch", |
|
27 | 27 | "test": "jest", |
28 | 28 | "test:update": "jest --u" |
29 | 29 | }, |
| 30 | + "peerDependencies": { |
| 31 | + "vite": "^2.0.0-beta.69" |
| 32 | + }, |
30 | 33 | "dependencies": { |
31 | 34 | "chokidar": "^3.5.1", |
32 | 35 | "debug": "^4.3.2", |
|
36 | 39 | }, |
37 | 40 | "devDependencies": { |
38 | 41 | "@antfu/eslint-config": "^0.6.6", |
| 42 | + "@antfu/utils": "^0.2.0", |
39 | 43 | "@types/debug": "^4.1.5", |
40 | 44 | "@types/jest": "^26.0.23", |
41 | 45 | "@types/minimatch": "^3.0.4", |
|
49 | 53 | "tsup": "^4.11.2", |
50 | 54 | "typescript": "^4.3.2", |
51 | 55 | "vite": "^2.3.7" |
52 | | - }, |
53 | | - "peerDependencies": { |
54 | | - "vite": "^2.0.0-beta.69" |
55 | 56 | } |
56 | 57 | } |
0 commit comments