-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.89 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
{
"name": "@novalumo/krado",
"version": "0.0.4",
"repository": "git://github.com/novalumo/krado.git",
"main": "dist/krado.umd.js",
"module": "dist/krado.es.js",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@chromatic-com/storybook": "^3.2.6",
"@headlessui/react": "^2.2.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@storybook/addon-a11y": "^8.6.7",
"@storybook/addon-actions": "^8.6.7",
"@storybook/addon-controls": "^8.6.7",
"@storybook/addon-designs": "^8.2.1",
"@storybook/addon-docs": "^8.6.7",
"@storybook/addon-essentials": "^8.6.7",
"@storybook/addon-interactions": "^8.6.7",
"@storybook/addon-links": "^8.6.7",
"@storybook/addon-mdx-gfm": "^8.6.7",
"@storybook/addon-measure": "^8.6.7",
"@storybook/addon-onboarding": "^8.6.7",
"@storybook/addon-outline": "^8.6.7",
"@storybook/addon-storysource": "^8.6.7",
"@storybook/addon-styling": "^1.3.7",
"@storybook/addon-toolbars": "^8.6.7",
"@storybook/addon-viewport": "^8.6.7",
"@storybook/blocks": "^8.6.7",
"@storybook/builder-vite": "^8.6.7",
"@storybook/manager-api": "^8.6.7",
"@storybook/react": "^8.6.7",
"@storybook/react-vite": "^8.6.7",
"@storybook/test": "^8.6.7",
"@storybook/test-runner": "^0.22.0",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^8.6.7",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.0.15",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.15",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.13.11",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"motion": "^12.5.0",
"next": "^15.2.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.3",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-icons": "^5.5.0",
"remark-gfm": "^4.0.1",
"storybook": "^8.6.7",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.15",
"tsc-alias": "^1.8.11",
"typed-css-modules": "^0.9.1",
"typed-scss-modules": "^8.1.1",
"typescript": "~5.7.3",
"vite": "^6.2.2",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.9",
"wrangler": "^4.3.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/krado.es.js",
"require": "./dist/krado.umd.js"
},
"./styles.css": "./dist/krado.css"
},
"files": ["dist"],
"private": false,
"scripts": {
"dev": "storybook dev -p 6006 --no-open",
"storybook:build": "storybook build",
"build": "run-p build:*",
"build:scripts": "vite build",
"build:types": "tsc --emitDeclarationOnly && tsc-alias"
},
"sideEffects": false,
"type": "module",
"types": "dist/index.d.ts"
}