UNPKG

1.65 kBJSONView Raw
1{
2 "name": "typed-css-modules",
3 "version": "0.9.1",
4 "description": "Creates .d.ts files from CSS Modules .css files",
5 "main": "lib/index.js",
6 "types": "lib/index.d.ts",
7 "scripts": {
8 "clean": "rimraf lib/",
9 "build": "npm run clean && tsc && chmod +x lib/cli.js",
10 "prettier": "prettier \"*.{md,js,json.yml,yaml}\" \"{src,test}/**/*\"",
11 "format": "npm run prettier -- --write",
12 "lint": "npm run prettier -- --check",
13 "compile": "tsc --noEmit",
14 "test": "jest",
15 "test:watch": "jest --watch",
16 "test:ci": "jest --coverage",
17 "prepublish": "npm run build",
18 "prepare": "husky install"
19 },
20 "bin": {
21 "tcm": "lib/cli.js"
22 },
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/Quramy/typed-css-modules.git"
26 },
27 "keywords": [
28 "css-modules",
29 "typescript"
30 ],
31 "author": "quramy",
32 "license": "MIT",
33 "engines": {
34 "node": ">=18.0.0"
35 },
36 "dependencies": {
37 "camelcase": "^6.0.0",
38 "chalk": "^4.0.0",
39 "chokidar": "^3.4.0",
40 "glob": "^10.3.10",
41 "icss-replace-symbols": "^1.1.0",
42 "is-there": "^4.4.2",
43 "mkdirp": "^3.0.0",
44 "postcss": "^8.0.0",
45 "postcss-modules-extract-imports": "^3.0.0",
46 "postcss-modules-local-by-default": "^4.0.0",
47 "postcss-modules-scope": "^3.0.0",
48 "postcss-modules-values": "^4.0.0",
49 "yargs": "^17.7.2"
50 },
51 "devDependencies": {
52 "@types/jest": "29.5.11",
53 "@types/node": "20.11.5",
54 "@types/yargs": "17.0.32",
55 "husky": "8.0.3",
56 "jest": "29.7.0",
57 "prettier": "2.8.8",
58 "pretty-quick": "3.3.1",
59 "rimraf": "5.0.5",
60 "ts-jest": "29.1.2",
61 "typescript": "5.3.3"
62 }
63}