@cognitiv/components-web 1.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/component-manifest.json +749 -0
- package/dist/index.d.ts +3523 -0
- package/dist/index.js +979 -0
- package/package.json +93 -0
package/package.json
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cognitiv/components-web",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Cognitiv new UI Components library",
|
|
5
|
+
"author": "Cognitiv",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": "https://github.com/cognitiv/components-web.git",
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"module": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./manifest": {
|
|
17
|
+
"default": "./dist/component-manifest.json"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"type": "module",
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsup",
|
|
26
|
+
"build-storybook": "storybook build",
|
|
27
|
+
"deploy": "export AWS_PROFILE=cognitiv && sh ./scripts/deploy.sh",
|
|
28
|
+
"lint": "eslint .",
|
|
29
|
+
"storybook": "storybook dev -p 4060",
|
|
30
|
+
"test": "vitest",
|
|
31
|
+
"test:ui": "vitest --ui",
|
|
32
|
+
"test:coverage": "vitest --coverage"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@fortawesome/fontawesome-pro": "^7.1.0",
|
|
36
|
+
"@fortawesome/fontawesome-svg-core": "^7.1.0",
|
|
37
|
+
"@fortawesome/free-brands-svg-icons": "^7.1.0",
|
|
38
|
+
"@fortawesome/pro-duotone-svg-icons": "^7.1.0",
|
|
39
|
+
"@fortawesome/pro-regular-svg-icons": "^7.1.0",
|
|
40
|
+
"@fortawesome/pro-solid-svg-icons": "^7.1.0",
|
|
41
|
+
"@fortawesome/react-fontawesome": "^3.1.1",
|
|
42
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
43
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
44
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
45
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
46
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
47
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
48
|
+
"dayjs": "^1.11.9",
|
|
49
|
+
"react-currency-input-field": "^4.0.3",
|
|
50
|
+
"react-dnd": "^16.0.1",
|
|
51
|
+
"react-dnd-html5-backend": "^16.0.1",
|
|
52
|
+
"styled-components": "^6.3.8"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@babel/core": "^7.28.6",
|
|
56
|
+
"@eslint/js": "^9.39.2",
|
|
57
|
+
"@storybook/addon-docs": "^10.1.11",
|
|
58
|
+
"@storybook/addon-links": "^10.1.11",
|
|
59
|
+
"@storybook/addon-webpack5-compiler-swc": "^4.0.2",
|
|
60
|
+
"@storybook/react-webpack5": "^10.1.11",
|
|
61
|
+
"@tsconfig/create-react-app": "^2.0.10",
|
|
62
|
+
"@types/react": "^19.2.8",
|
|
63
|
+
"@types/react-dom": "^19.2.3",
|
|
64
|
+
"babel-loader": "^10.0.0",
|
|
65
|
+
"eslint": "^9.39.2",
|
|
66
|
+
"eslint-plugin-react": "^7.37.5",
|
|
67
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
68
|
+
"eslint-plugin-storybook": "10.1.11",
|
|
69
|
+
"prettier": "^3.8.0",
|
|
70
|
+
"react": "^19.2.3",
|
|
71
|
+
"react-dom": "^19.2.3",
|
|
72
|
+
"storybook": "^10.1.11",
|
|
73
|
+
"@testing-library/dom": "^10.4.1",
|
|
74
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
75
|
+
"@testing-library/react": "^16.3.2",
|
|
76
|
+
"@testing-library/user-event": "^14.5.2",
|
|
77
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
78
|
+
"@vitest/ui": "^2.1.8",
|
|
79
|
+
"@vitest/coverage-v8": "^2.1.8",
|
|
80
|
+
"jsdom": "^25.0.1",
|
|
81
|
+
"tslib": "^2.8.1",
|
|
82
|
+
"tsup": "^8.5.1",
|
|
83
|
+
"typescript": "^5.9.3",
|
|
84
|
+
"typescript-eslint": "^8.53.0",
|
|
85
|
+
"vitest": "^2.1.8"
|
|
86
|
+
},
|
|
87
|
+
"engines": {
|
|
88
|
+
"node": ">=22.12.0"
|
|
89
|
+
},
|
|
90
|
+
"peerDependencies": {
|
|
91
|
+
"react": ">=19"
|
|
92
|
+
}
|
|
93
|
+
}
|