-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
54
55
56
{
"name": "vite-plugin-dynamic-prefetch",
"version": "0.1.5",
"description": "\"A vite plugin supports prefetch for dynamic imports at runtime\"",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"author": {
"name": "LinhTran",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"vite",
"vite-plugin",
"dynamic-import",
"prefetch"
],
"homepage": "https://github.com/Linh-Tran-0312/vite-plugin-dynamic-prefetch#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Linh-Tran-0312/vite-plugin-dynamic-prefetch.git"
},
"bugs": {
"url": "https://github.com/Linh-Tran-0312/vite-plugin-dynamic-prefetch/issues"
},
"files": [
"./dist"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run bundle",
"bundle": "tsup-node src/index.ts --dts --format esm,cjs"
},
"devDependencies": {
"@alloc/fast-rimraf": "^1.0.8",
"@types/node": "^22.10.2",
"magic-string": "^0.30.17",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"vite": "^5.4.11"
},
"peerDependencies": {
"vite": ">=4.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}