-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
{
"name": "vite-plugin-happy-css-modules",
"version": "0.3.0",
"description": "Vite plugin for happy-css-modules",
"type": "module",
"keywords": [
"vite",
"css",
"css-modules",
"happy-css-modules"
],
"homepage": "https://github.com/koyashiro/vite-plugin-happy-css-modules#README",
"bugs": {
"url": "https://github.com/koyashiro/vite-plugin-happy-css-modules/issues"
},
"license": "MIT",
"author": "koyashiro",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/koyashiro/vite-plugin-happy-css-modules.git"
},
"scripts": {
"build": "rm -rf ./dist/ && tsc && rollup -c",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"exports": {
"require": ".dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"devDependencies": {
"@eslint/js": "9.21.0",
"@rollup/plugin-swc": "0.4.0",
"@swc/cli": "0.5.2",
"@swc/core": "1.10.6",
"eslint": "9.21.0",
"eslint-config-prettier": "9.1.0",
"globals": "15.15.0",
"happy-css-modules": "3.2.0",
"prettier": "3.5.2",
"prettier-plugin-organize-imports": "4.1.0",
"rollup": "4.34.8",
"tslib": "2.8.1",
"typescript": "5.7.3",
"typescript-eslint": "8.24.1",
"vite": "5.4.14"
},
"peerDependencies": {
"happy-css-modules": ">= 3",
"vite": ">= 5"
},
"volta": {
"node": "20.18.3",
"npm": "10.9.2"
}
}