generated from unplugin/unplugin-starter
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
116 lines (116 loc) · 2.67 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "unplugin-inject-preload",
"type": "module",
"version": "3.0.0",
"packageManager": "[email protected]",
"description": "Inject <link rel='preload'> for Webpack/ViteJS",
"license": "MIT",
"homepage": "https://github.com/applelo/unplugin-inject-preload#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/applelo/unplugin-inject-preload.git"
},
"bugs": {
"url": "https://github.com/applelo/unplugin-inject-preload/issues"
},
"keywords": [
"unplugin",
"vite",
"webpack",
"rspack",
"html-webpack-plugin",
"html",
"link",
"preload",
"inject"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.js",
"require": "./dist/vite.cjs"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"import": "./dist/webpack.js",
"require": "./dist/webpack.cjs"
},
"./rspack": {
"types": "./dist/rspack.d.ts",
"import": "./dist/rspack.js",
"require": "./dist/rspack.cjs"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js",
"require": "./dist/types.cjs"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit --skipLibCheck",
"prepublishOnly": "pnpm build",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"html-webpack-plugin": ">=5.0.0"
},
"peerDependenciesMeta": {
"html-webpack-plugin": {
"optional": true
}
},
"dependencies": {
"mime-types": "^2.1.35",
"unplugin": "^1.12.2",
"webpack-sources": "^3.2.3"
},
"devDependencies": {
"@antfu/eslint-config": "3.0.0",
"@rspack/core": "^1.0.0",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.5.1",
"@types/webpack-sources": "^3.2.3",
"@vitest/coverage-v8": "^2.0.5",
"css-loader": "^7.1.2",
"esno": "^4.7.0",
"fast-glob": "^3.3.2",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.1",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"tsup": "^8.2.4",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vitest": "^2.0.5",
"webpack": "^5.94.0"
}
}