@boxcustodia/library 1.8.5 → 1.9.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.
Files changed (4) hide show
  1. package/dist/index.cjs.js +104 -104
  2. package/dist/index.d.ts +17 -12
  3. package/dist/index.es.js +12041 -11871
  4. package/package.json +118 -118
package/package.json CHANGED
@@ -1,118 +1,118 @@
1
- {
2
- "name": "@boxcustodia/library",
3
- "version": "1.8.5",
4
- "type": "module",
5
- "main": "dist/index.cjs.js",
6
- "module": "dist/index.es.js",
7
- "types": "dist/index.d.ts",
8
- "sideEffects": false,
9
- "files": [
10
- "/dist"
11
- ],
12
- "publishConfig": {
13
- "access": "public",
14
- "registry": "https://registry.npmjs.org/"
15
- },
16
- "scripts": {
17
- "format": "biome format --write .",
18
- "lint": "biome check --write .",
19
- "build": "tsc && vite build && npm run copy:theme",
20
- "copy:theme": "copy .\\src\\styles\\theme.css .\\dist || cp ./src/styles/theme.css ./dist",
21
- "test": "vitest run",
22
- "test-watch": "vitest",
23
- "test:ui": "vitest --ui",
24
- "pre-storybook": "node scripts/toggle-vite-config.js disable",
25
- "post-storybook": "node scripts/toggle-vite-config.js enable",
26
- "storybook": "storybook dev -p 6006",
27
- "storybook:build": "npm run pre-storybook && storybook build && npm run post-storybook",
28
- "storybook:deploy": "npm run storybook:build && netlify deploy --prod --dir=storybook-static",
29
- "dev": "storybook dev -p 6006",
30
- "prepare-husky": "husky",
31
- "generate": "plop",
32
- "commit": "npx cz",
33
- "pre-commit": "lint-staged",
34
- "release": "npm run build && npx standard-version && git push --follow-tags origin develop && npm publish && npm run storybook:deploy",
35
- "release:push": "npm run build && git push --follow-tags origin develop && npm publish",
36
- "release:canary": "npm run build && npx standard-version --prerelease canary && git push --follow-tags origin develop && npm publish --tag canary",
37
- "release:minor": "npm run build && npx standard-version --release-as minor && git push --follow-tags origin develop && npm publish",
38
- "release:patch": "npm run build && npx standard-version --release-as patch && git push --follow-tags origin develop && npm publish"
39
- },
40
- "lint-staged": {
41
- "*": [
42
- "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
43
- ]
44
- },
45
- "keywords": [],
46
- "author": "",
47
- "license": "ISC",
48
- "description": "",
49
- "dependencies": {
50
- "@biomejs/biome": "^2.3.8",
51
- "@radix-ui/react-dialog": "^1.1.15",
52
- "@radix-ui/react-dropdown-menu": "^2.1.16",
53
- "@radix-ui/react-popover": "^1.1.15",
54
- "@radix-ui/react-presence": "^1.1.5",
55
- "@radix-ui/react-select": "^2.2.6",
56
- "@radix-ui/react-slot": "^1.2.4",
57
- "@radix-ui/react-tooltip": "1.2.8",
58
- "@radix-ui/react-use-controllable-state": "^1.2.2",
59
- "react-aria-components": "^1.13.0",
60
- "vite-tsconfig-paths": "^6.0.1"
61
- },
62
- "devDependencies": {
63
- "@chromatic-com/storybook": "^4.1.3",
64
- "@faker-js/faker": "^10.1.0",
65
- "@hookform/resolvers": "^5.2.2",
66
- "@storybook/addon-links": "10.1.9",
67
- "@storybook/addon-onboarding": "10.1.9",
68
- "@storybook/react-vite": "10.1.9",
69
- "@tailwindcss/vite": "^4.1.18",
70
- "@testing-library/jest-dom": "^6.9.1",
71
- "@testing-library/react": "16.3.0",
72
- "@testing-library/user-event": "^14.6.1",
73
- "@types/lodash": "^4.17.21",
74
- "@types/node": "^25.0.2",
75
- "@types/react": "19.2.7",
76
- "@types/react-dom": "19.2.3",
77
- "@types/react-transition-group": "^4.4.12",
78
- "@vitejs/plugin-react": "^5.1.2",
79
- "autoprefixer": "^10.4.23",
80
- "class-variance-authority": "^0.7.1",
81
- "clsx": "^2.1.1",
82
- "cmdk": "^1.1.1",
83
- "commitizen": "^4.3.1",
84
- "cz-conventional-changelog": "^3.3.0",
85
- "date-fns": "^4.1.0",
86
- "husky": "^9.1.7",
87
- "jsdom": "^27.3.0",
88
- "lint-staged": "^16.2.7",
89
- "lucide-react": "0.561.0",
90
- "plop": "^4.0.4",
91
- "react-arborist": "^3.4.3",
92
- "react-hook-form": "^7.68.0",
93
- "react-markdown": "^10.1.0",
94
- "react-transition-group": "^4.4.5",
95
- "standard-version": "^9.5.0",
96
- "storybook": "10.1.9",
97
- "tailwind-merge": "^3.4.0",
98
- "tailwind-variants": "^3.2.2",
99
- "tailwindcss": "^4.1.18",
100
- "tailwindcss-animate": "^1.0.7",
101
- "typescript": "^5.9.3",
102
- "vite": "^7.3.0",
103
- "vite-plugin-dts": "^4.5.4",
104
- "vitest": "^4.0.15",
105
- "zod": "^4.2.0",
106
- "zustand": "^5.0.9",
107
- "@storybook/addon-docs": "10.1.9"
108
- },
109
- "peerDependencies": {
110
- "react": "^19.2.3",
111
- "react-dom": "^19.2.3"
112
- },
113
- "config": {
114
- "commitizen": {
115
- "path": "./node_modules/cz-conventional-changelog"
116
- }
117
- }
118
- }
1
+ {
2
+ "name": "@boxcustodia/library",
3
+ "version": "1.9.0",
4
+ "type": "module",
5
+ "main": "dist/index.cjs.js",
6
+ "module": "dist/index.es.js",
7
+ "types": "dist/index.d.ts",
8
+ "sideEffects": false,
9
+ "files": [
10
+ "/dist"
11
+ ],
12
+ "publishConfig": {
13
+ "access": "public",
14
+ "registry": "https://registry.npmjs.org/"
15
+ },
16
+ "scripts": {
17
+ "format": "biome format --write .",
18
+ "lint": "biome check --write .",
19
+ "build": "tsc && vite build && npm run copy:theme",
20
+ "copy:theme": "copy .\\src\\styles\\theme.css .\\dist || cp ./src/styles/theme.css ./dist",
21
+ "test": "vitest run",
22
+ "test-watch": "vitest",
23
+ "test:ui": "vitest --ui",
24
+ "pre-storybook": "node scripts/toggle-vite-config.js disable",
25
+ "post-storybook": "node scripts/toggle-vite-config.js enable",
26
+ "storybook": "storybook dev -p 6006",
27
+ "storybook:build": "npm run pre-storybook && storybook build && npm run post-storybook",
28
+ "storybook:deploy": "npm run storybook:build && netlify deploy --prod --dir=storybook-static",
29
+ "dev": "storybook dev -p 6006",
30
+ "prepare-husky": "husky",
31
+ "generate": "plop",
32
+ "commit": "npx cz",
33
+ "pre-commit": "lint-staged",
34
+ "release": "npm run build && npx standard-version && git push --follow-tags origin develop && npm publish && npm run storybook:deploy",
35
+ "release:push": "npm run build && git push --follow-tags origin develop && npm publish",
36
+ "release:canary": "npm run build && npx standard-version --prerelease canary && git push --follow-tags origin develop && npm publish --tag canary",
37
+ "release:minor": "npm run build && npx standard-version --release-as minor && git push --follow-tags origin develop && npm publish",
38
+ "release:patch": "npm run build && npx standard-version --release-as patch && git push --follow-tags origin develop && npm publish"
39
+ },
40
+ "lint-staged": {
41
+ "*": [
42
+ "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
43
+ ]
44
+ },
45
+ "keywords": [],
46
+ "author": "",
47
+ "license": "ISC",
48
+ "description": "",
49
+ "dependencies": {
50
+ "@biomejs/biome": "^2.3.8",
51
+ "@radix-ui/react-dialog": "^1.1.15",
52
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
53
+ "@radix-ui/react-popover": "^1.1.15",
54
+ "@radix-ui/react-presence": "^1.1.5",
55
+ "@radix-ui/react-select": "^2.2.6",
56
+ "@radix-ui/react-slot": "^1.2.4",
57
+ "@radix-ui/react-tooltip": "1.2.8",
58
+ "@radix-ui/react-use-controllable-state": "^1.2.2",
59
+ "react-aria-components": "^1.13.0",
60
+ "vite-tsconfig-paths": "^6.0.1"
61
+ },
62
+ "devDependencies": {
63
+ "@chromatic-com/storybook": "^4.1.3",
64
+ "@faker-js/faker": "^10.1.0",
65
+ "@hookform/resolvers": "^5.2.2",
66
+ "@storybook/addon-links": "10.1.9",
67
+ "@storybook/addon-onboarding": "10.1.9",
68
+ "@storybook/react-vite": "10.1.9",
69
+ "@tailwindcss/vite": "^4.1.18",
70
+ "@testing-library/jest-dom": "^6.9.1",
71
+ "@testing-library/react": "16.3.0",
72
+ "@testing-library/user-event": "^14.6.1",
73
+ "@types/lodash": "^4.17.21",
74
+ "@types/node": "^25.0.2",
75
+ "@types/react": "19.2.7",
76
+ "@types/react-dom": "19.2.3",
77
+ "@types/react-transition-group": "^4.4.12",
78
+ "@vitejs/plugin-react": "^5.1.2",
79
+ "autoprefixer": "^10.4.23",
80
+ "class-variance-authority": "^0.7.1",
81
+ "clsx": "^2.1.1",
82
+ "cmdk": "^1.1.1",
83
+ "commitizen": "^4.3.1",
84
+ "cz-conventional-changelog": "^3.3.0",
85
+ "date-fns": "^4.1.0",
86
+ "husky": "^9.1.7",
87
+ "jsdom": "^27.3.0",
88
+ "lint-staged": "^16.2.7",
89
+ "lucide-react": "0.561.0",
90
+ "plop": "^4.0.4",
91
+ "react-arborist": "^3.4.3",
92
+ "react-hook-form": "^7.68.0",
93
+ "react-markdown": "^10.1.0",
94
+ "react-transition-group": "^4.4.5",
95
+ "standard-version": "^9.5.0",
96
+ "storybook": "10.1.9",
97
+ "tailwind-merge": "^3.4.0",
98
+ "tailwind-variants": "^3.2.2",
99
+ "tailwindcss": "^4.1.18",
100
+ "tailwindcss-animate": "^1.0.7",
101
+ "typescript": "^5.9.3",
102
+ "vite": "^7.3.0",
103
+ "vite-plugin-dts": "^4.5.4",
104
+ "vitest": "^4.0.15",
105
+ "zod": "^4.2.0",
106
+ "zustand": "^5.0.9",
107
+ "@storybook/addon-docs": "10.1.9"
108
+ },
109
+ "peerDependencies": {
110
+ "react": "^19.2.3",
111
+ "react-dom": "^19.2.3"
112
+ },
113
+ "config": {
114
+ "commitizen": {
115
+ "path": "./node_modules/cz-conventional-changelog"
116
+ }
117
+ }
118
+ }