-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "vite-plugin-incremental-build",
"version": "1.0.10",
"description": "This is a wrapper + plugin for Vite that brings incremental builds for your project",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"files": [
"/lib"
],
"scripts": {
"build": "rimraf lib && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/momentumdash/vite-plugin-incremental-build.git"
},
"keywords": [
"vite",
"incremental",
"build"
],
"author": "Momentum Dashboard Corp.",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/momentumdash/vite-plugin-incremental-build/issues"
},
"homepage": "https://github.com/momentumdash/vite-plugin-incremental-build#readme",
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/node": "^20.14.9",
"chokidar": "^3.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0"
},
"peerDependencies": {
"fast-glob": "^3.3.2",
"vite": "^5.0.0"
}
}