forked from jarlef/vite-plugin-preload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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
57
58
59
60
{
"name": "vite-plugin-preload",
"version": "0.1.7",
"author": "jarlef",
"repository": {
"type": "git",
"url": "https://github.com/jarlef/vite-plugin-preload"
},
"bugs": {
"url": "https://github.com/jarlef/vite-plugin-preload/issues"
},
"homepage": "https://github.com/jarlef/vite-plugin-preload/tree/main/#readme",
"license": "MIT",
"scripts": {
"clean": "rimraf dist \"./examples/*/dist/\" \"./examples/*/node_modules/\"",
"build": "tsup",
"pretest": "yarn build",
"test": "jest",
"prepack": "yarn build"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"keywords": [
"vite",
"preload",
"plugin",
"bundle"
],
"files": [
"README.md",
"src",
"dist"
],
"dependencies": {
"@rollup/pluginutils": "^4.1.2",
"jsdom": "^19.0.0",
"prettier": "^2.5.1"
},
"peerDependencies": {
"vite": ">=2.0.0"
},
"devDependencies": {
"@swc/core": "^1.2.123",
"@swc/jest": "^0.2.15",
"@types/jest": "^27.0.3",
"@types/jsdom": "^16.2.14",
"@types/node": "^17.0.5",
"@types/prettier": "^2.4.2",
"jest": "^27.4.5",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"tsup": "^5.11.9",
"typescript": "^4.5.4",
"vite": "^2.7.7"
}
}