-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.07 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
{
"name": "juvo",
"version": "0.2.1",
"description": "Balanced design system built around the Harmony color palette",
"keywords": [
"design-system",
"components",
"accessibility",
"react",
"tailwindcss"
],
"homepage": "https://github.com/kripod/juvo#readme",
"bugs": "https://github.com/kripod/juvo/issues",
"repository": "kripod/juvo",
"license": "MIT",
"author": "Kristóf Poduszló (https://www.kripod.dev/)",
"sideEffects": [
"*.css"
],
"type": "module",
"exports": {
".": {
"types": "./dist/mod.d.ts",
"default": "./dist/mod.js"
},
"./styles/base.css": "./dist/styles/base.css",
"./styles/standalone.css": "./dist/styles/standalone.css",
"./tailwind-preset": {
"types": "./dist/tailwind-preset.d.ts",
"default": "./dist/tailwind-preset.js"
}
},
"module": "./dist/mod.js",
"types": "./dist/mod.d.ts",
"files": [
"dist/",
"src/"
],
"scripts": {
"prepare": "husky",
"dev": "storybook dev --port 6006",
"build": "pnpm run \"/^build:[^:]+$/\"",
"build:lib": "vite build",
"build:stories": "NO_DTS=true storybook build --stats-json",
"clean": "git clean --interactive -dx --exclude node_modules/ --exclude .husky/",
"lint": "pnpm run \"/^lint:(?!fix)/\"",
"lint:js+ts": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore .",
"lint:format": "prettier --check .",
"lint:types": "tsc --noEmit",
"lint:fix": "pnpm run \"/^lint:fix:/\"",
"lint:fix:js+ts": "pnpm run lint:js+ts --fix",
"lint:fix:format": "prettier --write ."
},
"dependencies": {
"@evilmartians/harmony": "^1.2.0",
"@heroicons/react": "^2.1.5",
"clsx": "^2.1.1"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@storybook/addon-a11y": "8.3.6",
"@storybook/addon-essentials": "8.3.6",
"@storybook/addon-interactions": "8.3.6",
"@storybook/addon-themes": "8.3.6",
"@storybook/blocks": "8.3.6",
"@storybook/react": "8.3.6",
"@storybook/react-vite": "8.3.6",
"@storybook/test": "8.3.6",
"@total-typescript/tsconfig": "1.0.4",
"@types/node": "22.9.3",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react-swc": "3.7.2",
"@wise/eslint-config": "11.3.0",
"eslint": "8.57.1",
"eslint-plugin-react-refresh": "0.4.16",
"eslint-plugin-tailwindcss": "3.17.5",
"husky": "9.1.7",
"nano-staged": "0.8.0",
"postcss-preset-env": "10.0.9",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.9",
"react": "18.3.1",
"react-dom": "18.3.1",
"rollup-preserve-directives": "1.1.3",
"storybook": "8.3.6",
"tailwindcss": "3.4.17",
"typescript": "5.6.3",
"vite": "5.4.11",
"vite-plugin-dts": "4.3.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"tailwindcss": "^3.4",
"typescript": ">=5.4"
},
"peerDependenciesMeta": {
"tailwindcss": {
"optional": true
},
"typescript": {
"optional": true
}
},
"packageManager": "[email protected]"
}