@douglasneuroinformatics/libui 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@douglasneuroinformatics/libui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"packageManager": "pnpm@8.15.3",
|
|
6
6
|
"description": "Generic UI components for DNP projects, built using React and TailwindCSS",
|
|
7
7
|
"author": {
|
|
@@ -39,12 +39,21 @@
|
|
|
39
39
|
"tailwind.config.cjs",
|
|
40
40
|
"tailwind.config.d.cts"
|
|
41
41
|
],
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsup && cp -r src/styles dist",
|
|
44
|
+
"format": "prettier --write src",
|
|
45
|
+
"lint": "tsc && eslint --fix src",
|
|
46
|
+
"prepare": "husky",
|
|
47
|
+
"storybook": "storybook dev -p 6006",
|
|
48
|
+
"storybook:build": "storybook build"
|
|
49
|
+
},
|
|
42
50
|
"peerDependencies": {
|
|
43
51
|
"react": "^18.2.0",
|
|
44
52
|
"react-dom": "^18.2.0",
|
|
45
53
|
"tailwindcss": "^3.3.5"
|
|
46
54
|
},
|
|
47
55
|
"dependencies": {
|
|
56
|
+
"@radix-ui/react-accordion": "^1.1.2",
|
|
48
57
|
"@radix-ui/react-icons": "^1.3.0",
|
|
49
58
|
"@radix-ui/react-label": "^2.0.2",
|
|
50
59
|
"@radix-ui/react-slot": "^1.0.2",
|
|
@@ -100,12 +109,5 @@
|
|
|
100
109
|
"typescript": "~5.3.3",
|
|
101
110
|
"vite": "4.4.9",
|
|
102
111
|
"vitest": "^1.3.1"
|
|
103
|
-
},
|
|
104
|
-
"scripts": {
|
|
105
|
-
"build": "tsup && cp -r src/styles dist",
|
|
106
|
-
"format": "prettier --write src",
|
|
107
|
-
"lint": "tsc && eslint --fix src",
|
|
108
|
-
"storybook": "storybook dev -p 6006",
|
|
109
|
-
"storybook:build": "storybook build"
|
|
110
112
|
}
|
|
111
|
-
}
|
|
113
|
+
}
|