-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.18 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.18 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
{
"name": "css-modules-types-generator",
"version": "1.0.0",
"description": "Generate TypeScript definitions for CSS/SCSS modules",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/theoklitosBam7/css-modules-types-generator.git"
},
"author": {
"name": "Theoklitos Bampouris",
"email": "th.bampouris@gmail.com",
"url": "https://github.com/theoklitosBam7"
},
"files": [
"LICENSE",
"README.md",
"dist/"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./run": "./dist/run.js",
"./package.json": "./package.json"
},
"bin": {
"css-types-gen": "dist/run.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "npm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"unit": "vitest run --silent",
"unit:ui": "vitest --ui --open",
"unit:watch": "vitest",
"unit:coverage": "vitest --coverage",
"test": "npm run unit",
"typecheck": "tsc --noEmit",
"format": "prettier --cache --write .",
"release": "bumpp && npm publish",
"prepublishOnly": "npm run build",
"prepare-hooks": "simple-git-hooks"
},
"dependencies": {
"chokidar": "^4.0.3",
"commander": "^14.0.0",
"glob": "^11.0.3",
"postcss": "^8.5.6",
"postcss-modules": "^6.0.1",
"sass": "^1.89.2"
},
"devDependencies": {
"@sxzz/eslint-config": "^7.0.1",
"@sxzz/prettier-config": "^2.2.1",
"@types/node": "^22.15.17",
"bumpp": "^10.1.0",
"eslint": "^9.26.0",
"happy-dom": "^18.0.1",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"simple-git-hooks": "^2.13.0",
"tsdown": "^0.12.9",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm run typecheck && npm run test"
},
"lint-staged": {
"*.{js,ts,json}": [
"eslint --fix",
"prettier --write"
]
},
"prettier": "@sxzz/prettier-config"
}