-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
61 lines (61 loc) · 1.54 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
{
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a",
"name": "tailwindcss-radix",
"version": "3.0.5",
"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.4.1"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/node": "^20.11.30",
"husky": "^9.0.11",
"postcss": "^8.4.38",
"release-it": "^17.1.1",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true
}
},
"engines": {
"pnpm": "9"
}
}