-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 3.41 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
109
110
111
112
113
114
115
116
117
118
{
"name": "@chromatic-com/tetra",
"version": "2.0.6",
"description": "Style Guide + UI library for Chromatic and Storybook marketing sites and docs",
"author": {
"name": "winkervsbecks"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chromaui/tetra.git"
},
"scripts": {
"dev": "concurrently -n \"Build,SB\" \"pnpm run build --watch\" \"pnpm run storybook\" ",
"build": "tsup --onSuccess \"cp -a public/. dist/public\"",
"type-check": "tsc",
"lint": "eslint --ignore-pattern .gitignore \"src/**/*.+(ts|js|tsx)\"",
"lint:fix": "pnpm run lint --fix && prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"release": "pnpm run build && auto shipit",
"prepare": "node ./prepare.js"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-pattern .gitignore --fix"
],
"*.{js,jsx,json,md}": "prettier --write"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"files": [
"dist"
],
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@storybook/addon-a11y": "^8.4.4",
"@storybook/addon-essentials": "^8.4.4",
"@storybook/addon-interactions": "^8.4.4",
"@storybook/addon-mdx-gfm": "^8.4.4",
"@storybook/blocks": "^8.4.4",
"@storybook/eslint-config-storybook": "^4.0.0",
"@storybook/react": "^8.4.4",
"@storybook/react-vite": "^8.4.4",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^8.4.4",
"@types/node": "18.15.3",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"@vitejs/plugin-react": "3.1.0",
"auto": "11.1.6",
"concurrently": "8.0.1",
"eslint": "8.57.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-storybook": "^0.11.1",
"framer-motion": "11.0.3",
"husky": "^8.0.0",
"lint-staged": "13.2.2",
"prettier": "3.3.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"storybook": "^8.4.4",
"tsup": "7.2.0",
"typescript": "5.0.2",
"vite": "4.2.1"
},
"peerDependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"framer-motion": "^11.0.3",
"react": ">=17",
"react-dom": ">=17"
},
"dependencies": {
"@radix-ui/react-accordion": "1.1.2",
"@radix-ui/react-collapsible": "1.0.2",
"@radix-ui/react-dropdown-menu": "2.0.5",
"@radix-ui/react-navigation-menu": "1.1.2",
"@radix-ui/react-popover": "1.0.5"
},
"bugs": {
"url": "https://github.com/chromaui/tetra/issues"
},
"homepage": "https://github.com/chromaui/tetra#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"auto": {
"versionBranches": true,
"plugins": [
"npm"
]
},
"resolutions": {
"jackspeak": "2.1.1"
},
"packageManager": "[email protected]+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a"
}