-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "twl-monorepo",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.29.2",
"description": "A TailwindCSS utility library.",
"author": "Brendan Dash <me@aiwan.run> (https://aiwan.run)",
"license": "MIT",
"homepage": "https://github.com/Debbl/twl#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Debbl/twl.git"
},
"bugs": "https://github.com/Debbl/twl/issues",
"keywords": [
"tailwindcss",
"utility",
"css"
],
"scripts": {
"build": "turbo build",
"test": "turbo test",
"typecheck": "turbo typecheck",
"lint": "eslint",
"lint:fix": "eslint --fix",
"release": "bumpp -r && pnpm publish -r"
},
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@debbl/eslint-config": "^3.15.2",
"@types/node": "^25.2.2",
"bumpp": "^10.4.1",
"eslint": "9.39.2",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.20.3",
"turbo": "^2.8.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}