-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 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
{
"name": "tailwindcss-radix",
"version": "4.0.1",
"description": "Utilities and variants for styling Radix state",
"main": "dist/index.js",
"scripts": {
"prepare": "husky",
"format": "npx biome format --write",
"test": "vitest --run",
"build": "rimraf dist/ && tsc --removeComments",
"release": "npm run build && release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecklf/tailwindcss-radix.git"
},
"keywords": [
"tailwindcss",
"plugin",
"radix",
"react"
],
"author": {
"email": "[email protected]",
"name": "Florentin Eckl",
"url": "https://ecklf.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ecklf/tailwindcss-radix/issues"
},
"homepage": "https://github.com/ecklf/tailwindcss-radix#readme",
"peerDependencies": {
"tailwindcss": "^3.0 || ^4.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.13.1",
"husky": "^9.1.7",
"postcss": "^8.5.1",
"release-it": "^18.1.2",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true
}
},
"engines": {
"node": "^20"
},
"packageManager": "[email protected]"
}