caplink-saas-ui-shared-component-library 0.2.4 → 0.3.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.
- package/README.md +5 -1
- package/dist/index.d.ts +323 -77
- package/dist/index.es.js +10088 -0
- package/dist/index.es.js.map +1 -0
- package/dist/index.umd.js +139 -0
- package/dist/index.umd.js.map +1 -0
- package/package.json +51 -35
- package/dist/src/index.css +0 -1223
- package/dist/src/index.css.map +0 -1
- package/dist/src/index.js +0 -3594
- package/dist/src/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,77 +1,93 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "caplink-saas-ui-shared-component-library",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "A shared UI component library for React projects from Caplink",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
6
|
+
"license": "ISC",
|
|
7
|
+
"source": "./src/index.ts",
|
|
8
|
+
"main": "./dist/index.es.js",
|
|
9
|
+
"module": "./dist/index.es.js",
|
|
8
10
|
"types": "./dist/index.d.ts",
|
|
9
|
-
"files": [
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
10
14
|
"exports": {
|
|
11
15
|
".": {
|
|
12
|
-
"import": "./dist/
|
|
16
|
+
"import": "./dist/index.es.js",
|
|
17
|
+
"require": "./dist/index.umd.js",
|
|
13
18
|
"types": "./dist/index.d.ts"
|
|
14
19
|
},
|
|
15
20
|
"./package.json": "./package.json"
|
|
16
21
|
},
|
|
17
22
|
"scripts": {
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"tsup:
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"dist:build": "tsup",
|
|
24
|
-
"build_publish": "npm run dist:build && npm publish"
|
|
23
|
+
"publish-lib": "npm run vite:build && npm publish",
|
|
24
|
+
"vite:build": "tsc && vite build",
|
|
25
|
+
"tsup:build": "tsup --minify --dts --sourcemap",
|
|
26
|
+
"sb:dev": "storybook dev -p 6006 --no-open",
|
|
27
|
+
"sb:build": "storybook build"
|
|
25
28
|
},
|
|
26
|
-
"license": "ISC",
|
|
27
29
|
"peerDependencies": {
|
|
30
|
+
"@types/react": "*",
|
|
31
|
+
"@types/react-dom": "*",
|
|
28
32
|
"react": "^18.3.1",
|
|
29
33
|
"react-dom": "^18.3.1"
|
|
30
34
|
},
|
|
35
|
+
"peerDependenciesMeta": {
|
|
36
|
+
"@types/react": {
|
|
37
|
+
"optional": true
|
|
38
|
+
},
|
|
39
|
+
"@types/react-dom": {
|
|
40
|
+
"optional": true
|
|
41
|
+
}
|
|
42
|
+
},
|
|
31
43
|
"devDependencies": {
|
|
32
|
-
"@babel/core": "^7.24.0",
|
|
33
|
-
"@babel/preset-env": "^7.24.0",
|
|
34
|
-
"@babel/preset-react": "^7.23.3",
|
|
35
|
-
"@babel/preset-typescript": "^7.23.3",
|
|
36
44
|
"@biomejs/biome": "1.7.1",
|
|
37
|
-
"@chromatic-com/storybook": "^1.
|
|
45
|
+
"@chromatic-com/storybook": "^1.3.3",
|
|
38
46
|
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
39
47
|
"@radix-ui/react-icons": "^1.3.0",
|
|
40
48
|
"@radix-ui/react-select": "^2.0.0",
|
|
41
49
|
"@radix-ui/react-slot": "^1.0.2",
|
|
42
50
|
"@radix-ui/react-tooltip": "^1.0.7",
|
|
43
|
-
"@
|
|
44
|
-
"@
|
|
45
|
-
"@storybook/addon-
|
|
46
|
-
"@storybook/addon-
|
|
47
|
-
"@storybook/addon-
|
|
48
|
-
"@storybook/
|
|
49
|
-
"@storybook/
|
|
50
|
-
"@storybook/
|
|
51
|
-
"@storybook/
|
|
52
|
-
"@
|
|
53
|
-
"@
|
|
51
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
52
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
53
|
+
"@storybook/addon-essentials": "^8.0.9",
|
|
54
|
+
"@storybook/addon-interactions": "^8.0.9",
|
|
55
|
+
"@storybook/addon-links": "^8.0.9",
|
|
56
|
+
"@storybook/addon-onboarding": "^8.0.9",
|
|
57
|
+
"@storybook/blocks": "^8.0.9",
|
|
58
|
+
"@storybook/builder-vite": "^8.1.1",
|
|
59
|
+
"@storybook/react": "^8.0.9",
|
|
60
|
+
"@storybook/react-vite": "^8.1.1",
|
|
61
|
+
"@storybook/test": "^8.0.9",
|
|
54
62
|
"@types/jest": "^29.5.12",
|
|
63
|
+
"@vitejs/plugin-react-swc": "^3.6.0",
|
|
55
64
|
"autoprefixer": "^10.4.19",
|
|
56
65
|
"babel-jest": "^29.7.0",
|
|
57
66
|
"class-variance-authority": "^0.7.0",
|
|
58
67
|
"clsx": "^2.1.1",
|
|
59
|
-
"cypress": "^13.7.0",
|
|
60
68
|
"globals": "^15.0.0",
|
|
61
69
|
"identity-obj-proxy": "^3.0.0",
|
|
62
70
|
"jest": "^29.7.0",
|
|
63
71
|
"jest-environment-jsdom": "^29.7.0",
|
|
64
72
|
"lucide-react": "^0.376.0",
|
|
65
|
-
"nanoid": "^5.0.7",
|
|
66
73
|
"postcss": "^8.4.38",
|
|
74
|
+
"postcss-import": "^16.1.0",
|
|
67
75
|
"react-number-format": "^5.3.4",
|
|
68
76
|
"react-use": "^17.5.0",
|
|
69
|
-
"
|
|
77
|
+
"rollup": "^4.17.2",
|
|
78
|
+
"rollup-plugin-dts": "^6.1.0",
|
|
79
|
+
"rollup-plugin-import-css": "^3.5.0",
|
|
80
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
81
|
+
"rollup-plugin-sass": "^1.12.22",
|
|
82
|
+
"rollup-plugin-typescript2": "^0.36.0",
|
|
83
|
+
"storybook": "^8.0.9",
|
|
70
84
|
"tailwind-merge": "^2.3.0",
|
|
71
85
|
"tailwindcss": "^3.4.3",
|
|
72
86
|
"tailwindcss-animate": "^1.0.7",
|
|
73
87
|
"tsup": "^8.0.2",
|
|
74
|
-
"typescript": "^5.4.5"
|
|
75
|
-
|
|
76
|
-
|
|
88
|
+
"typescript": "^5.4.5",
|
|
89
|
+
"vite": "^5.2.11",
|
|
90
|
+
"vite-plugin-css-injected-by-js": "^3.5.1",
|
|
91
|
+
"vite-plugin-dts": "^3.9.1"
|
|
92
|
+
}
|
|
77
93
|
}
|