-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.71 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
{
"name": "tailwind-zag",
"type": "module",
"license": "MIT",
"version": "1.1.0",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.25.0",
"author": {
"name": "John Paul Calvo",
"email": "looselytiedshoelace@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CalvoJohnPaul/tailwind-zag.git"
},
"bugs": {
"url": "https://github.com/CalvoJohnPaul/tailwind-zag/issues",
"email": "looselytiedshoelace@gmail.com"
},
"description": "TailwindCSS plugin for zag-powered components",
"keywords": [
"TailwindCSS",
"zag",
"Ark UI",
"Plugin"
],
"scripts": {
"dev": "tsdown --watch",
"test": "vitest",
"lint": "biome lint .",
"format": "biome format --write .",
"build": "tsdown",
"release": "release-it"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^24.10.2",
"postcss": "^8.5.6",
"release-it": "^19.0.6",
"tailwindcss": "^3.4.17",
"tsdown": "^0.17.2",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"peerDependencies": {
"tailwindcss": "^3.3.3 || ^4.0.0"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${npm.name} v${version}",
"tagName": "${npm.name}@${version}"
},
"github": {
"release": false
},
"hooks": {
"before:init": [
"pnpm lint",
"pnpm test"
],
"after:bump": [
"pnpm build"
]
}
}
}