-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.37 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.37 KB
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
{
"name": "@deeptrust-ai/deep-ui",
"author": {
"name": "DeepTrust",
"url": "https://www.deeptrust.ai/"
},
"homepage": "https://github.com/deeptrust-ai/deep-ui#readme",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"version": "0.1.7",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"storybook": "storybook dev -p 6006",
"prebuild-storybook": "npm run build",
"build-storybook": "storybook build",
"build": "vite build",
"build:watch": "vite build --watch",
"generate": "plop",
"lint:library": "eslint \"lib/**/*.@(ts|tsx)\"",
"lint:stories": "eslint \"**/*.stories.@(ts|tsx|mdx)\"",
"lint": "npm run lint:library && npm run lint:stories",
"tsc:library": "tsc -p tsconfig.lib.json --pretty",
"tsc:stories": "tsc -p tsconfig.stories.json --pretty",
"tsc": "npm run tsc:library && npm run tsc:stories",
"format": "prettier --write .",
"chromatic": "npx chromatic",
"color-tokens": "node scripts/sync-figma-tokens.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./styles.css": "./dist/styles.css"
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts",
"dist/*"
]
}
},
"peerDependencies": {
"@phosphor-icons/react": "2.1.10",
"@radix-ui/themes": "3.3.0",
"react": "^18.3.1 || ^19.0.0",
"react-dom": "^18.3.1 || ^19.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/deeptrust-ai/deep-ui.git"
},
"devDependencies": {
"@chromatic-com/storybook": "5.1.1",
"@eslint/js": "9.39.4",
"@storybook/addon-a11y": "10.3.3",
"@storybook/addon-docs": "10.3.3",
"@storybook/addon-mcp": "0.4.2",
"@storybook/addon-vitest": "10.3.3",
"@storybook/builder-vite": "10.3.3",
"@storybook/react-vite": "10.3.3",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/css-modules": "1.0.5",
"@types/node": "22.19.15",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"ajv": "8.18.0",
"chromatic": "16.0.0",
"eslint": "9.39.4",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"eslint-plugin-storybook": "10.3.3",
"glob": "13.0.6",
"globals": "17.4.0",
"playwright": "1.58.2",
"plop": "4.0.5",
"prettier": "3.8.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"storybook": "10.3.3",
"typescript": "5.9.3",
"typescript-eslint": "8.57.2",
"vite": "8.0.3",
"vite-plugin-dts": "4.5.4",
"vite-plugin-lib-inject-css": "2.2.2",
"vitest": "4.1.2"
},
"overrides": {
"@vue/language-core": "2.2.12",
"handlebars": "4.7.9",
"minimatch@9.0.9": {
"brace-expansion": "2.0.3"
},
"minimatch@10.2.3": {
"brace-expansion": "5.0.5"
},
"minimatch@10.2.4": {
"brace-expansion": "5.0.5"
},
"micromatch": {
"picomatch": "2.3.2"
},
"yaml": "2.8.3",
"cosmiconfig": {
"yaml": "1.10.3"
}
},
"dependencies": {
"@mantine/hooks": "8.3.18",
"@radix-ui/react-popover": "1.1.15",
"classnames": "2.5.1",
"date-fns": "4.1.0",
"react-day-picker": "9.14.0"
}
}