-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 856 Bytes
/
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
{
"name": "vite-plugin-lib-css-injection",
"version": "1.0.6",
"description": "A vite plugin that would inject the css file into your bundled js file.",
"keywords": ["vite", "css", "plugin", "lib"],
"author": "https://github.com/KamiC6238",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KamiC6238/vite-plugin-lib-css-injection"
},
"type": "module",
"scripts": {
"build": "unbuild"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@types/node": "^20.8.10",
"@types/web": "^0.0.119",
"bun-types": "^1.0.8",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vite": "^4.5.0"
}
}