-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
{
"name": "typed-css-modules",
"version": "0.9.1",
"description": "Creates .d.ts files from CSS Modules .css files",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib/",
"build": "npm run clean && tsc && chmod +x lib/cli.js",
"prettier": "prettier \"*.{md,js,json.yml,yaml}\" \"{src,test}/**/*\"",
"format": "npm run prettier -- --write",
"lint": "npm run prettier -- --check",
"compile": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --coverage",
"prepublish": "npm run build",
"prepare": "husky install"
},
"bin": {
"tcm": "lib/cli.js"
},
"repository": {
"type": "git",
"url": "/~https://github.com/Quramy/typed-css-modules.git"
},
"keywords": [
"css-modules",
"typescript"
],
"author": "quramy",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"camelcase": "^6.0.0",
"chalk": "^4.0.0",
"chokidar": "^3.4.0",
"glob": "^10.3.10",
"icss-replace-symbols": "^1.1.0",
"is-there": "^4.4.2",
"mkdirp": "^3.0.0",
"postcss": "^8.0.0",
"postcss-modules-extract-imports": "^3.0.0",
"postcss-modules-local-by-default": "^4.0.0",
"postcss-modules-scope": "^3.0.0",
"postcss-modules-values": "^4.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "20.17.14",
"@types/yargs": "17.0.33",
"husky": "9.1.7",
"jest": "29.7.0",
"prettier": "3.4.2",
"pretty-quick": "4.0.0",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"typescript": "5.5.4"
}
}