-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.82 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
{
"name": "@cretia/components",
"description": "Cretia components library",
"version": "0.0.3-alpha.8",
"type": "module",
"license": "MIT",
"engines": {
"node": "^18 || ^20",
"pnpm": "8",
"yarn": "0",
"bun": "0"
},
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"build": "rollup -c --bundleConfigAsCjs",
"typecheck": "tsc --noEmit --pretty",
"clean": "rimraf dist node_modules",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,md}\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest"
},
"devDependencies": {
"@rollup/plugin-typescript": "~11.1.5",
"@storybook/addon-essentials": "~7.6.0",
"@storybook/addon-interactions": "~7.6.0",
"@storybook/addon-links": "~7.6.0",
"@storybook/addon-onboarding": "~1.0.8",
"@storybook/blocks": "~7.6.0",
"@storybook/builder-vite": "~7.6.0",
"@storybook/manager-api": "~7.6.0",
"@storybook/react": "~7.6.0",
"@storybook/react-vite": "~7.6.0",
"@storybook/testing-library": "~0.2.2",
"@storybook/theming": "~7.6.0",
"@testing-library/react": "~14.1.2",
"@testing-library/user-event": "~14.5.1",
"@types/cleave.js": "~1.4.12",
"@types/react": "~18.2.39",
"eslint": "~8.54.0",
"eslint-config-cretia": "~0.4.14",
"happy-dom": "~12.10.3",
"prettier": "~3.1.0",
"prettier-config-cretia": "~3.0.0",
"react": "18.x",
"react-dom": "18.x",
"rimraf": "~5.0.5",
"rollup": "~4.6.0",
"rollup-plugin-copy": "~3.5.0",
"rollup-plugin-esbuild": "~6.1.0",
"rollup-plugin-replace": "~2.2.0",
"storybook": "~7.6.0",
"tslib": "~2.6.2",
"typescript": "~5.3.2",
"vite": "~5.0.3",
"vite-tsconfig-paths": "~4.2.1",
"vitest": "~0.34.6"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "2.x",
"@radix-ui/react-select": "1.x",
"@radix-ui/react-tooltip": "1.x",
"@tabler/icons-react": "~2.42.0",
"@types/styled-system": "~5.1.22",
"cleave.js": "1.x",
"react-markdown": "8.x",
"react-textarea-autosize": "8.x",
"styled-components": "~6.1.1",
"styled-system": "5.x"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"packageManager": "[email protected]",
"bugs": "https://github.com/cretia-app/components/issues",
"homepage": "https://components.cretia.app",
"files": [
"dist",
"styles",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
},
"./package.json": "./package.json",
"./styles/global.css": {
"import": "./styles/global.css",
"require": "./styles/global.css",
"default": "./styles/global.css"
}
},
"repository": {
"type": "git",
"url": "https://github.com/cretia-app/components"
},
"keywords": [
"cretia",
"components",
"design-system"
]
}