-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 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
{
"name": "vite-plugin-standard-css-modules",
"version": "0.0.11",
"description": "Provide a CSSStyleSheet or a CSSResult (Lit) for using with import attributes.\nUsing the \"with\" keyword and \"type : css\".",
"keywords": [
"import-attributes",
"import-assertions",
"native-css-modules",
"with-type-css",
"constructable-stylesheets",
"css-module-scripts",
"vite-plugin",
"withastro"
],
"repository": "https://github.com/JulianCataldo/vite-plugin-standard-css-modules",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/JulianCataldo"
},
"license": "ISC",
"author": "Julian Cataldo <contact@juliancataldo.com> (https://www.juliancataldo.com/)",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./css-modules": {
"types": "./css-modules.d.ts",
"default": "./css-modules.js"
}
},
"files": [
"./*.js",
"./*.d.ts"
],
"scripts": {
"types": "tsc",
"release": "npm run types && npm publish"
},
"devDependencies": {
"@types/node": "^20.12.7",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"peerDependencies": {
"lit": "3.x",
"vite": "5.x"
},
"peerDependenciesMeta": {
"lit": {
"optional": true
}
},
"engines": {
"node": ">=18"
}
}