-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 3.82 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@corca-ai/design-system",
"author": "Corca <[email protected]>",
"description": "Design System for Corca, Inc.",
"private": false,
"version": "0.0.37",
"packageManager": "[email protected]",
"type": "module",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./icon": {
"require": "./icon.js",
"import": "./dist/icon/index.mjs",
"types": "./dist/icon/index.d.ts"
},
"./composite": {
"require": "./composite.js",
"import": "./dist/composite/index.mjs",
"types": "./dist/composite/index.d.ts"
},
"./component": {
"require": "./component.js",
"import": "./dist/component/index.mjs",
"types": "./dist/component/index.d.ts"
},
"./legacy": {
"require": "./legacy.js",
"import": "./dist/legacy/index.mjs",
"types": "./dist/legacy/index.d.ts"
},
"./cds.css": "./dist/cds.css",
"./global.css": "./dist/global.css",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"component.js",
"composite.js",
"icon.js",
"legacy.js",
"token.js",
"component.d.ts",
"composite.d.ts",
"icon.d.ts",
"legacy.d.ts",
"token.d.ts"
],
"sideEffects": false,
"repository": "https://github.com/corca-ai/cds",
"scripts": {
"build": "tsc --noEmit && vite build && panda cssgen --outfile dist/cds.css",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"icongen": "svgr --out-dir ./src/icon/generated-default --index-template ./tools/svgrIndexTemplate.cjs -- ./src/icon/assets",
"prepare": "husky && panda codegen",
"prepublishOnly": "node tools/removePacakgeType.cjs"
},
"dependencies": {
"date-fns": "3.3.1",
"react-aria-components": "^1.3.1",
"react-colorful": "5.6.1",
"react-datepicker": "4.25.0",
"react-hot-toast": "2.4.1"
},
"peerDependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@eslint/js": "9.7.0",
"@pandacss/dev": "^0.44.0",
"@storybook/addon-designs": "8.0.3",
"@storybook/addon-essentials": "8.2.2",
"@storybook/addon-interactions": "8.2.2",
"@storybook/addon-links": "8.2.2",
"@storybook/addon-storysource": "8.2.2",
"@storybook/react": "8.2.2",
"@storybook/react-vite": "8.2.2",
"@svgr/cli": "8.1.0",
"@svgr/core": "^8.1.0",
"@types/eslint__js": "8.42.3",
"@types/react": "^18.2.60",
"@types/react-datepicker": "4.19.6",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitejs/plugin-react": "4.3.0",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"globals": "^15.9.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "2.8.8",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"storybook": "^8.2.2",
"svgo": "3.3.2",
"tsconfig-paths-webpack-plugin": "4.1.0",
"tslib": "2.6.2",
"typescript": "5.5.3",
"typescript-eslint": "^7.16.0",
"vite": "5.1.4",
"vite-plugin-banner": "0.7.1",
"vite-plugin-dts": "3.7.3",
"vite-plugin-static-copy": "1.0.5",
"vite-tsconfig-paths": "4.3.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --parser=typescript --write",
"eslint --fix"
]
}
}