-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.81 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
{
"name": "@casavo/habitat",
"description": "Casavo Design System Library",
"private": false,
"version": "1.0.6",
"type": "module",
"license": "Apache-2.0",
"homepage": "https://github.com/casavo/habitat",
"author": "Casavo Developers <[email protected]>",
"engines": {
"node": "^18 || ^20 || ^22"
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"style": "./dist/style.css",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/style.css",
"./badge": "./dist/badge.js",
"./button": "./dist/button.js",
"./checkbox": "./dist/checkbox.js",
"./switch": "./dist/switch.js",
"./theme": "./dist/theme.js",
"./reset": "./dist/reset.js",
"./typography": "./dist/typography.js"
},
"scripts": {
"start": "npm run dev",
"dev": "npm run storybook",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"prebuild:components": "rm -rf ./dist && rm -rf ./storybook-static",
"build:components": " tsc && vite build ",
"update:tokens": "style-dictionary build -c ./dictionary.config.json",
"test:unit": "vitest run"
},
"dependencies": {
"@vanilla-extract/css": "1.17.0",
"@vanilla-extract/recipes": "0.5.5",
"react-aria": "3.36.0",
"react-aria-components": "1.5.0"
},
"peerDependencies": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@storybook/addon-essentials": "8.4.7",
"@storybook/addon-interactions": "8.4.7",
"@storybook/addon-links": "8.4.7",
"@storybook/blocks": "8.4.7",
"@storybook/react": "8.4.7",
"@storybook/react-vite": "8.4.7",
"@storybook/testing-library": "0.2.2",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@types/jest": "29.5.14",
"@types/mocha": "10.0.10",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@typescript-eslint/eslint-plugin": "8.19.0",
"@typescript-eslint/parser": "8.19.0",
"@vanilla-extract/vite-plugin": "4.0.19",
"@vitejs/plugin-react": "4.3.4",
"chromatic": "11.20.2",
"eslint": "8.57.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.16",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-storybook": "0.11.2",
"eslint-plugin-typescript-sort-keys": "3.3.0",
"jsdom": "25.0.1",
"prop-types": "15.8.1",
"storybook": "8.4.7",
"style-dictionary": "4.3.0",
"typescript": "5.7.2",
"vite": "5.4.11",
"vite-plugin-dts": "4.4.0",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8"
}
}