-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.9 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": "@man4ish/ui",
"version": "1.1.0",
"description": "OmniBioAI shared React component library",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@man4ish/design-tokens": "file:../omnibioai-design-tokens"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.2.1",
"@storybook/addon-a11y": "^10.4.5",
"@storybook/addon-docs": "^10.4.5",
"@storybook/addon-mcp": "^0.6.0",
"@storybook/addon-vitest": "^10.4.5",
"@storybook/react-vite": "^10.4.5",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/browser-playwright": "^4.1.8",
"@vitest/coverage-v8": "^4.1.8",
"jsdom": "^29.1.1",
"playwright": "^1.60.0",
"standard-version": "^9.5.0",
"storybook": "^10.4.5",
"typescript": "^5.0.0",
"vite": "^8.0.16",
"vite-plugin-dts": "^5.0.2",
"vitest": "^4.1.8"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"build": "vite build",
"dev": "vite build --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/man4ish/omnibioai-ui.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"@man4ish:registry": "https://npm.pkg.github.com"
},
"overrides": {
"esbuild": "0.28.1"
}
}