@bass-ui-kit/core 0.1.1 → 0.1.2

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.
Files changed (1) hide show
  1. package/package.json +20 -18
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bass-ui-kit/core",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "High-performance accessible UI primitives engineered for fintech interfaces.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -11,7 +11,8 @@
11
11
  "types": "./dist/index.d.ts",
12
12
  "import": "./dist/index.js",
13
13
  "require": "./dist/index.cjs"
14
- }
14
+ },
15
+ "./styles.css": "./dist/index.css"
15
16
  },
16
17
  "files": [
17
18
  "dist"
@@ -34,8 +35,23 @@
34
35
  "react-dom": "^19.2.0",
35
36
  "framer-motion": "^12.38.0"
36
37
  },
38
+ "scripts": {
39
+ "lint": "eslint . --max-warnings 0",
40
+ "generate:component": "turbo gen react-component",
41
+ "check-types": "tsc --noEmit",
42
+ "storybook": "storybook dev -p 6006",
43
+ "build-storybook": "storybook build",
44
+ "build": "tsup index.ts --format esm,cjs --dts --clean --minify --external react --external react-dom --external framer-motion --external @radix-ui/* --external @tanstack/*",
45
+ "dev": "tsup index.ts --format esm --watch --dts",
46
+ "prepublishOnly": "pnpm build",
47
+ "test": "vitest --config vitest.unit.config.ts",
48
+ "test:ui": "vitest",
49
+ "chromatic": "chromatic"
50
+ },
37
51
  "devDependencies": {
38
52
  "@chromatic-com/storybook": "^5.1.2",
53
+ "@repo/eslint-config": "workspace:*",
54
+ "@repo/typescript-config": "workspace:*",
39
55
  "@storybook/addon-a11y": "^10.3.5",
40
56
  "@storybook/addon-docs": "^10.3.5",
41
57
  "@storybook/addon-onboarding": "^10.3.5",
@@ -65,9 +81,7 @@
65
81
  "tsup": "^8.5.1",
66
82
  "typescript": "5.9.2",
67
83
  "vite": "^8.0.9",
68
- "vitest": "^4.1.5",
69
- "@repo/eslint-config": "0.0.0",
70
- "@repo/typescript-config": "0.0.0"
84
+ "vitest": "^4.1.5"
71
85
  },
72
86
  "dependencies": {
73
87
  "@fontsource-variable/inclusive-sans": "^5.2.8",
@@ -86,17 +100,5 @@
86
100
  "clsx": "^2.1.1",
87
101
  "cmdk": "^1.1.1",
88
102
  "tailwind-merge": "^3.5.0"
89
- },
90
- "scripts": {
91
- "lint": "eslint . --max-warnings 0",
92
- "generate:component": "turbo gen react-component",
93
- "check-types": "tsc --noEmit",
94
- "storybook": "storybook dev -p 6006",
95
- "build-storybook": "storybook build",
96
- "build": "tsup index.ts --format esm,cjs --dts --clean --minify --external react --external react-dom --external framer-motion --external @radix-ui/* --external @tanstack/*",
97
- "dev": "tsup index.ts --format esm --watch --dts",
98
- "test": "vitest --config vitest.unit.config.ts",
99
- "test:ui": "vitest",
100
- "chromatic": "chromatic"
101
103
  }
102
- }
104
+ }