-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "vite-plugin-externalize-deps",
"description": "A configurable Vite plugin to help externalize your dependencies (includes subpaths)",
"version": "0.9.0",
"author": "David Myers <david@voracious.dev>",
"funding": "https://github.com/sponsors/voracious",
"homepage": "https://github.com/voracious/vite-plugin-externalize-deps",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/voracious/vite-plugin-externalize-deps.git"
},
"keywords": [
"dependencies",
"dev",
"utils",
"vite",
"vite-plugin"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "vite build && tsc",
"test": "vite build -c test/vite.config.ts"
},
"packageManager": "pnpm@8.3.1",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/node": "^22.10.2",
"typescript": "^5.7.2",
"vite": "^6.0.4",
"vite-plugin-externalize-deps": "^0.8.0",
"vite-plugin-inspect": "^0.10.3"
},
"peerDependencies": {
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"publishConfig": {
"access": "public"
}
}