forked from mrmckeb/typescript-plugin-css-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.67 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
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
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "typescript-plugin-css-modules",
"version": "5.0.2",
"main": "dist/index.js",
"author": "Brody McKee <[email protected]>",
"license": "MIT",
"description": "CSS modules support for TypeScript",
"homepage": "https://github.com/mrmckeb/typescript-plugin-css-modules",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/mrmckeb/typescript-plugin-css-modules"
},
"keywords": [
"css",
"scss",
"sass",
"less",
"stylus",
"modules",
"plugin",
"postcss",
"typescript"
],
"files": [
"dist"
],
"scripts": {
"build": "rm -rf ./dist && tsc --project tsconfig.build.json",
"lint": "eslint --max-warnings 0 . && pnpm prettier -c .",
"prepublishOnly": "pnpm build",
"test": "jest",
"prepare": "husky install"
},
"lint-staged": {
"./src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"./**/*.{json,md,yml}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@types/postcss-modules-local-by-default": "^4.0.0",
"@types/postcss-modules-scope": "^3.0.1",
"dotenv": "^16.0.3",
"icss-utils": "^5.1.0",
"less": "^4.1.3",
"lodash.camelcase": "^4.3.0",
"postcss": "^8.4.21",
"postcss-load-config": "^3.1.4",
"postcss-modules-extract-imports": "^3.0.0",
"postcss-modules-local-by-default": "^4.0.0",
"postcss-modules-scope": "^3.0.0",
"reserved-words": "^0.1.2",
"sass": "^1.58.3",
"source-map-js": "^1.0.2",
"stylus": "^0.59.0",
"tsconfig-paths": "^4.1.2"
},
"devDependencies": {
"@types/icss-utils": "^5.1.0",
"@types/jest": "^29.4.0",
"@types/less": "^3.0.3",
"@types/lodash.camelcase": "^4.3.7",
"@types/node": "^18.14.0",
"@types/postcss-modules-extract-imports": "^3.0.2",
"@types/reserved-words": "^0.1.0",
"@types/sass": "^1.43.1",
"@types/stylus": "^0.48.38",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"bootstrap": "^5.2.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-environment-node-single-context": "^29.0.0",
"lint-staged": "^13.1.2",
"postcss-import-sync2": "^1.2.0",
"postcss-nested": "^4.2.3",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.8.4",
"sass-svg": "^1.2.0",
"ts-jest": "^29.0.5",
"typescript": "5.0.1-rc"
},
"peerDependencies": {
"typescript": ">=4.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@popperjs/core",
"node-sass"
]
}
}
}