-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "esbuild-css-modules-plugin",
"version": "3.1.4",
"description": "A esbuild plugin to bundle css modules into js(x)/ts(x), based on extremely fast [Lightning CSS](https://lightningcss.dev/)",
"main": "./index.cjs",
"module": "./index.js",
"types": "./index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.cjs",
"default": "./index.js"
}
},
"keywords": [
"esbuild",
"plugin",
"esbuildplugin",
"esbuild plugin",
"css modules",
"fast",
"cssmodules",
"lightningcss"
],
"engines": {
"node": ">= 20"
},
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/indooorsman/esbuild-css-modules-plugin.git"
},
"scripts": {
"test": "cd ./test && rm -rf ./dist && node test.js",
"test:cjs": "cd ./test && rm -rf ./dist && node test.cjs",
"pub": "npm_config_registry=https://registry.npmjs.org/ npm publish --userconfig ~/.pubnpmrc --access public --tag latest"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.5",
"esbuild": "^0.24.2"
},
"peerDependencies": {
"esbuild": "*"
},
"dependencies": {
"lightningcss": "^1.28.2",
"lodash-es": "^4.17.21"
},
"publishConfig": {
"access": "public"
}
}