-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.1 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
{
"name": "css-modules-dts-loader",
"version": "1.5.1",
"description": "A Webpack loader that generates TypeScript declaration files (.d.ts) for CSS modules.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Ch-Valentine/css-modules-dts-loader.git"
},
"keywords": [
"webpack",
"webpack-loader",
"rspack",
"css",
"css-modules",
"scss",
"sass",
"less",
"postcss",
"typescript",
"dts",
"types",
"declarations",
"typings",
"type-generation",
"auto-generate"
],
"author": "Ch-Valentine <senioro.work@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ch-Valentine/css-modules-dts-loader/issues"
},
"homepage": "https://github.com/Ch-Valentine/css-modules-dts-loader#readme",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit && tsc --project tsconfig.test.json",
"test": "pnpm build && vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "semantic-release",
"prepublishOnly": "pnpm run clean && pnpm run build && pnpm run test"
},
"files": [
"dist"
],
"packageManager": "pnpm@10.24.0",
"dependencies": {
"schema-utils": "^4.3.3"
},
"peerDependencies": {
"webpack": ">=5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^25.0.10",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.6",
"css-loader": "^7.1.2",
"eslint": "^9.39.2",
"globals": "^17.0.0",
"memfs": "^4.56.9",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"webpack": "^5.104.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}