-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 846 Bytes
/
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
{
"name": "@idered/twix",
"version": "0.0.7",
"description": "Style Radix Ui components with Tailwind CSS",
"repository": "Idered/tailwindcss-radix-ui",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"prepack": "unbuild",
"release": "standard-version && pnpm build && git push --follow-tags && pnpm publish"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/react": "^18.0.25",
"standard-version": "^9.5.0",
"typescript": "^4.8.4",
"unbuild": "^0.9.4"
}
}