-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
51
52
53
{
"name": "vite-plugin-entries-build-cache",
"version": "1.0.8",
"description": "Rollup plugin entries build cache",
"main": "dist/vite-plugin-entries-build-cache.cjs.js",
"module": "dist/vite-plugin-entries-build-cache.es.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/vite-plugin-entries-build-cache.es.js",
"require": "./dist/vite-plugin-entries-build-cache.cjs.js"
},
"files": [
"dist"
],
"keywords": [
"rollup",
"rollup-plugin"
],
"homepage": "https://github.com/simmzl/vite-plugin-entries-build-cache",
"author": "simmzl",
"license": "MIT",
"type": "module",
"repository": "https://github.com/simmzl/vite-plugin-entries-build-cache",
"bugs": {
"url": "https://github.com/simmzl/vite-plugin-entries-build-cache/issues"
},
"scripts": {
"prebuild": "rimraf -rf dist/*",
"build": "rollup -c",
"test": "node test/test.js",
"pretest": "npm run build",
"dev": "rollup -c -w",
"release": "npm run build && release-it"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/fs-extra": "^11.0.1",
"release-it": "^16.1.2",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"rollup-plugin-dts": "^5.3.0",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"vite": "^4.4.4"
},
"dependencies": {
"chalk": "^5.3.0",
"fast-glob": "^3.3.0",
"fs-extra": "^11.1.1"
}
}