-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 938 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 938 Bytes
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
{
"name": "vite-plugin-deps-cache",
"type": "module",
"version": "0.1.2",
"description": "Cache optimized dependencies continuously",
"keywords": [
"vite-plugin",
"vite",
"pre-bundle",
"optimize"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/index.ts --dts --format cjs,esm",
"lint": "eslint . --fix",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"vite": ">= 3"
},
"dependencies": {
"chokidar": "^3.5.3",
"fs-extra": "^11.1.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"tsup": "^6.5.0"
}
}