@boxcustodia/library 0.0.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/dist/index.d.ts +1388 -0
- package/dist/index.es.js +38294 -0
- package/dist/style.css +2279 -0
- package/package.json +108 -0
package/package.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@boxcustodia/library",
|
|
3
|
+
"version": "0.0.1",
|
|
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": "prettier --write --parser typescript '**/*.{ts,tsx}'",
|
|
18
|
+
"lint": "eslint . --ext .ts,.tsx --ignore-path .gitignore --fix",
|
|
19
|
+
"build": "tsc && vite build && npm run build:styles",
|
|
20
|
+
"build:styles": "postcss ./src/styles/index.css -o ./dist/style.css",
|
|
21
|
+
"test": "vitest run",
|
|
22
|
+
"test-watch": "vitest",
|
|
23
|
+
"test:ui": "vitest --ui",
|
|
24
|
+
"storybook": "storybook dev -p 6006",
|
|
25
|
+
"dev": "storybook dev -p 6006",
|
|
26
|
+
"build-storybook": "storybook build",
|
|
27
|
+
"prepare": "husky",
|
|
28
|
+
"generate": "plop"
|
|
29
|
+
},
|
|
30
|
+
"lint-staged": {
|
|
31
|
+
"*.{ts,tsx}": [
|
|
32
|
+
"npm run format",
|
|
33
|
+
"npm run lint",
|
|
34
|
+
"vitest related --run --config ./vite.config.ts"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
"keywords": [],
|
|
38
|
+
"author": "",
|
|
39
|
+
"license": "ISC",
|
|
40
|
+
"description": "",
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@hookform/resolvers": "^3.9.0",
|
|
43
|
+
"@radix-ui/react-dialog": "^1.1.1",
|
|
44
|
+
"@radix-ui/react-dropdown-menu": "^2.1.1",
|
|
45
|
+
"@radix-ui/react-popover": "^1.1.1",
|
|
46
|
+
"@radix-ui/react-presence": "^1.1.0",
|
|
47
|
+
"@radix-ui/react-select": "^2.1.1",
|
|
48
|
+
"@radix-ui/react-slot": "^1.0.2",
|
|
49
|
+
"@radix-ui/react-use-controllable-state": "^1.0.1",
|
|
50
|
+
"@storybook/addon-essentials": "^8.1.2",
|
|
51
|
+
"@storybook/addon-interactions": "^8.1.2",
|
|
52
|
+
"@storybook/addon-links": "^8.1.2",
|
|
53
|
+
"@storybook/addon-onboarding": "^8.1.2",
|
|
54
|
+
"@storybook/addon-postcss": "^2.0.0",
|
|
55
|
+
"@storybook/blocks": "^8.1.2",
|
|
56
|
+
"@storybook/react": "^8.1.2",
|
|
57
|
+
"@storybook/react-vite": "^8.1.2",
|
|
58
|
+
"@storybook/test": "^8.1.2",
|
|
59
|
+
"@testing-library/jest-dom": "^6.4.5",
|
|
60
|
+
"@testing-library/react": "^15.0.7",
|
|
61
|
+
"@testing-library/user-event": "^14.5.2",
|
|
62
|
+
"@types/lodash": "^4.17.6",
|
|
63
|
+
"@types/node": "^22.0.0",
|
|
64
|
+
"@types/react": "^18.3.2",
|
|
65
|
+
"@types/react-transition-group": "^4.4.10",
|
|
66
|
+
"@typescript-eslint/eslint-plugin": "^7.10.0",
|
|
67
|
+
"@typescript-eslint/parser": "^7.10.0",
|
|
68
|
+
"@vitejs/plugin-react": "^4.3.1",
|
|
69
|
+
"autoprefixer": "^10.4.19",
|
|
70
|
+
"class-variance-authority": "^0.7.0",
|
|
71
|
+
"clsx": "^2.1.1",
|
|
72
|
+
"cmdk": "^1.0.0",
|
|
73
|
+
"date-fns": "^3.6.0",
|
|
74
|
+
"eslint": "^8.57.0",
|
|
75
|
+
"eslint-config-prettier": "^9.1.0",
|
|
76
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
77
|
+
"eslint-plugin-react": "^7.34.1",
|
|
78
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
79
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
80
|
+
"husky": "^9.0.11",
|
|
81
|
+
"jsdom": "^24.0.0",
|
|
82
|
+
"lint-staged": "^15.2.2",
|
|
83
|
+
"lucide-react": "^0.379.0",
|
|
84
|
+
"plop": "^4.0.1",
|
|
85
|
+
"postcss": "^8.4.38",
|
|
86
|
+
"postcss-cli": "^10.1.0",
|
|
87
|
+
"prettier": "^3.2.5",
|
|
88
|
+
"react": "^18.3.1",
|
|
89
|
+
"react-arborist": "^3.4.0",
|
|
90
|
+
"react-hook-form": "^7.52.1",
|
|
91
|
+
"react-transition-group": "^4.4.5",
|
|
92
|
+
"sass": "^1.79.2",
|
|
93
|
+
"storybook": "^8.1.2",
|
|
94
|
+
"tailwind-merge": "^2.4.0",
|
|
95
|
+
"tailwindcss": "^3.4.3",
|
|
96
|
+
"tailwindcss-animate": "^1.0.7",
|
|
97
|
+
"typescript": "^5.4.5",
|
|
98
|
+
"vite": "^5.2.11",
|
|
99
|
+
"vite-plugin-dts": "^3.9.1",
|
|
100
|
+
"vitest": "^1.6.0",
|
|
101
|
+
"zod": "^3.23.8",
|
|
102
|
+
"zustand": "^4.5.4"
|
|
103
|
+
},
|
|
104
|
+
"peerDependencies": {
|
|
105
|
+
"react": "^18.3.1",
|
|
106
|
+
"react-dom": "^18.3.1"
|
|
107
|
+
}
|
|
108
|
+
}
|