-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.76 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
{
"name": "@mirrorstack-ai/web-ui-kit",
"packageManager": "pnpm@10.29.3",
"version": "0.6.3",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./theme.css": "./src/theme.css"
},
"files": [
"dist",
"src/theme.css"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"prepublishOnly": "pnpm build",
"components": "tsx scripts/components.ts",
"start-issue": "tsx scripts/start-issue.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"clsx": "^2.0.0",
"react-easy-crop": "^5.5.7",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^2.0.0"
},
"devDependencies": {
"@storybook/react": "^10.3.3",
"@storybook/react-vite": "^10.3.3",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/node": "^25.5.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^10.4.1",
"eslint-plugin-react-hooks": "^7.1.1",
"jsdom": "^25.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "^10.3.3",
"tailwindcss": "^4.2.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.61.0",
"vitest": "^3.0.0"
}
}