@bizbasics/ui 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.
- package/package.json +19 -4
- package/tsconfig.json +0 -18
package/package.json
CHANGED
|
@@ -1,16 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bizbasics/ui",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "bizbasics platform design system — shared React components (App shell, nav, primitives, PlatformNav) for products built on bizbasics.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"homepage": "https://bizbasics.io/docs",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/sage7-ai/bizbasics-product-template.git"
|
|
10
|
+
},
|
|
5
11
|
"main": "./src/index.ts",
|
|
6
12
|
"types": "./src/index.ts",
|
|
7
13
|
"exports": {
|
|
8
14
|
".": "./src/index.ts",
|
|
9
15
|
"./tokens.css": "./src/tokens.css"
|
|
10
16
|
},
|
|
17
|
+
"files": [
|
|
18
|
+
"src"
|
|
19
|
+
],
|
|
20
|
+
"sideEffects": [
|
|
21
|
+
"*.css"
|
|
22
|
+
],
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
11
26
|
"peerDependencies": {
|
|
12
|
-
"react": "^18",
|
|
13
|
-
"react-dom": "^18",
|
|
27
|
+
"react": "^18 || ^19",
|
|
28
|
+
"react-dom": "^18 || ^19",
|
|
14
29
|
"lucide-react": ">=0.400.0",
|
|
15
30
|
"next": ">=14"
|
|
16
31
|
}
|
package/tsconfig.json
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2017",
|
|
4
|
-
"lib": ["dom", "dom.iterable", "esnext"],
|
|
5
|
-
"allowJs": true,
|
|
6
|
-
"skipLibCheck": true,
|
|
7
|
-
"strict": true,
|
|
8
|
-
"esModuleInterop": true,
|
|
9
|
-
"module": "esnext",
|
|
10
|
-
"moduleResolution": "bundler",
|
|
11
|
-
"resolveJsonModule": true,
|
|
12
|
-
"isolatedModules": true,
|
|
13
|
-
"jsx": "react-jsx",
|
|
14
|
-
"declaration": true,
|
|
15
|
-
"declarationMap": true
|
|
16
|
-
},
|
|
17
|
-
"include": ["src"]
|
|
18
|
-
}
|