@atxp/design-system 0.1.0 → 0.1.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atxp/design-system",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "Circuit & Chisel Design System - React component library",
6
6
  "main": "./dist/index.cjs",
@@ -20,6 +20,16 @@
20
20
  "publishConfig": {
21
21
  "access": "public"
22
22
  },
23
+ "scripts": {
24
+ "dev": "pnpm build:css && tsup --watch",
25
+ "build": "tsup && pnpm build:css",
26
+ "build:css": "tailwindcss --input ./src/styles/globals.css --output ./dist/styles.css --minify",
27
+ "lint": "eslint src",
28
+ "typecheck": "tsc --noEmit",
29
+ "storybook": "storybook dev -p 6006",
30
+ "build-storybook": "storybook build",
31
+ "prepublishOnly": "pnpm build"
32
+ },
23
33
  "keywords": [
24
34
  "react",
25
35
  "components",
@@ -82,13 +92,5 @@
82
92
  "lucide-react": "^0.562.0",
83
93
  "sonner": "^2.0.7"
84
94
  },
85
- "scripts": {
86
- "dev": "pnpm build:css && tsup --watch",
87
- "build": "tsup && pnpm build:css",
88
- "build:css": "tailwindcss --input ./src/styles/globals.css --output ./dist/styles.css --minify",
89
- "lint": "eslint src",
90
- "typecheck": "tsc --noEmit",
91
- "storybook": "storybook dev -p 6006",
92
- "build-storybook": "storybook build"
93
- }
94
- }
95
+ "packageManager": "pnpm@10.26.0+sha512.3b3f6c725ebe712506c0ab1ad4133cf86b1f4b687effce62a9b38b4d72e3954242e643190fc51fa1642949c735f403debd44f5cb0edd657abe63a8b6a7e1e402"
96
+ }