-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.29 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "happy-css-modules",
"version": "5.0.2",
"description": "Creates .d.ts files from CSS Modules .css files",
"keywords": [
"css-modules",
"typescript"
],
"license": "MIT",
"author": "mizdra",
"repository": {
"type": "git",
"url": "git+https://github.com/mizdra/happy-css-modules.git"
},
"bin": {
"hcm": "bin/hcm.js"
},
"files": [
"bin",
"src",
"!src/**/*.test.ts",
"!src/**/__snapshots__",
"!src/test-util",
"dist"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"update-example": "cd example && node ../bin/hcm.js '*-*/*.{css,scss,less}' --no-cache",
"dev": "npm run build && npm run update-example",
"build": "tsc -p tsconfig.build.json",
"lint": "run-s -c lint:*",
"lint:oxfmt": "oxfmt --check",
"lint:oxlint": "oxlint --type-aware",
"lint:tsc": "tsc -p tsconfig.json",
"test": "vitest run"
},
"dependencies": {
"@file-cache/core": "^2.0.0",
"@file-cache/npm": "^2.0.0",
"camelcase": "^9.0.0",
"chokidar": "^5.0.0",
"enhanced-resolve": "^5.22.2",
"import-meta-resolve": "^4.2.0",
"postcss": "^8.5.16",
"postcss-load-config": "^6.0.1",
"postcss-modules": "^6.0.1",
"postcss-selector-parser": "^7.1.1",
"postcss-value-parser": "^4.2.0",
"source-map": "^0.7.6"
},
"devDependencies": {
"@mizdra/oxfmt-config": "^0.2.0",
"@mizdra/oxlint-config": "^0.5.0",
"@types/dedent": "^0.7.2",
"@types/less": "^3.0.8",
"@types/node": "^22.19.19",
"@typescript/server-harness": "^0.3.5",
"dedent": "^1.7.2",
"less": "^4.6.4",
"less-3": "npm:less@^3.13.1",
"less-4": "npm:less@^4.6.4",
"npm-run-all2": "^9.0.1",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"oxlint-tsgolint": "^0.23.0",
"postcss-import": "^16.1.1",
"postcss-simple-vars": "^7.0.1",
"sass": "^1.100.0",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"peerDependencies": {
"less": "^3.0.0 || ^4.0.0",
"postcss": "^8.0.0",
"sass": "^1.68.0"
},
"peerDependenciesMeta": {
"sass": {
"optional": true
},
"less": {
"optional": true
}
},
"engines": {
"node": "^22.20.0 || ^24.8.0 || >=26.0.0"
},
"packageManager": "npm@11.16.0"
}