-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.42 KB
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
{
"name": "vite-plugin-lit-css",
"description": "Plugin to get all the power of Vite styles with lit tagged-template ⚡",
"version": "3.0.0",
"type": "module",
"repository": "https://github.com/redfox-mx/vite-lit-css",
"keywords": [
"vite-plugin",
"lit",
"lit-css",
"vite-plugin-lit-css"
],
"author": {
"name": "Diego Jesus Hernández González",
"email": "hernandezdj98@outlook.com",
"aka": "redfox-mx"
},
"engines": {
"node": ">=18.2.0"
},
"files": [
"dist",
"client.d.ts"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./client": {
"types": "./client.d.ts"
}
},
"scripts": {
"build": "unbuild && tsx scripts/patchCJS.ts",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@rollup/pluginutils": "^5.3.0",
"@types/node": "^20.19.40",
"fast-glob": "^3.3.3",
"picocolors": "^1.1.1",
"rollup": "^4.60.3",
"tsx": "^4.21.0",
"unbuild": "^3.6.1",
"vitest": "^4.1.5"
},
"peerDependencies": {
"lit": "^2.0.0 || ^3.0.0",
"vite": "^7.0.0 || ^8.0.0"
},
"packageManager": "pnpm@11.0.9+sha512.34ce82e6780233cf9cad8685029a8f81d2e06196c5a9bad98879f7424940c6817c4e4524fb7d38b8553ceed48b9758b8ebaf1abd3600c232c4c8cf7366086f38"
}