-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.68 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "postcss-modules",
"version": "9.0.1",
"description": "PostCSS plugin to use CSS Modules everywhere",
"main": "build/index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./build/index.js"
},
"./loader": {
"types": "./loader.d.ts",
"default": "./build/loader.mjs"
},
"./package.json": "./package.json"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"modules",
"css modules",
"components"
],
"author": "Alexander Madyankin <alexander@madyankin.name>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/css-modules/postcss-modules.git"
},
"dependencies": {
"generic-names": "^4.0.0",
"icss-utils": "^5.1.0",
"lodash.camelcase": "^4.3.0",
"postcss-modules-extract-imports": "^3.1.0",
"postcss-modules-local-by-default": "^4.2.0",
"postcss-modules-scope": "^3.2.1",
"postcss-modules-values": "^4.0.0",
"string-hash": "^1.1.3"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.43",
"@swc/jest": "^0.2.39",
"autoprefixer": "^10.5.2",
"eslint": "^9.39.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.4",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"lint-staged": "^17.0.8",
"postcss": "^8.5.16",
"prettier": "^3.9.4"
},
"engines": {
"node": ">=20.6"
},
"scripts": {
"test": "make test",
"prepare": "husky || true"
},
"overrides": {
"glob": "^12.0.0",
"file-type": "^22.0.0"
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.js": [
"prettier --write",
"eslint --fix"
]
}
}