@cmgfi/clear-ds 1.0.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/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "@cmgfi/clear-ds",
3
+ "version": "1.0.0",
4
+ "description": "CMG Financial — Clear Design System React component library",
5
+ "keywords": ["cmg", "clear-ds", "design-system", "react", "components"],
6
+ "license": "UNLICENSED",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://cmg-financial.ghe.com/andyg/clear-ds.git"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "type": "module",
15
+ "main": "./dist/index.cjs",
16
+ "module": "./dist/index.mjs",
17
+ "types": "./dist/index.d.ts",
18
+ "exports": {
19
+ ".": {
20
+ "import": "./dist/index.mjs",
21
+ "require": "./dist/index.cjs",
22
+ "types": "./dist/index.d.ts"
23
+ },
24
+ "./tokens": "./dist/tokens/tokens.css",
25
+ "./styles": "./dist/index.css"
26
+ },
27
+ "files": [
28
+ "dist"
29
+ ],
30
+ "scripts": {
31
+ "build": "vite build",
32
+ "build:watch": "vite build --watch",
33
+ "storybook": "storybook dev -p 6006",
34
+ "build-storybook": "storybook build",
35
+ "type-check": "tsc --noEmit",
36
+ "prepublishOnly": "npm run build"
37
+ },
38
+ "peerDependencies": {
39
+ "react": ">=17",
40
+ "react-dom": ">=17",
41
+ "primeicons": ">=7"
42
+ },
43
+ "devDependencies": {
44
+ "@storybook/addon-essentials": "^8.6.0",
45
+ "@storybook/addon-interactions": "^8.6.0",
46
+ "@storybook/react": "^8.6.0",
47
+ "@storybook/react-vite": "^8.6.0",
48
+ "@storybook/test": "^8.6.0",
49
+ "@types/react": "^18.3.0",
50
+ "@types/react-dom": "^18.3.0",
51
+ "@vitejs/plugin-react": "^4.3.0",
52
+ "primeicons": "^7.0.0",
53
+ "storybook": "^8.6.0",
54
+ "typescript": "^5.6.0",
55
+ "vite": "^5.4.0",
56
+ "vite-plugin-dts": "^4.3.0"
57
+ }
58
+ }