-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.54 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
119
{
"type": "module",
"version": "0.0.6",
"name": "@webaverse-studios/uikit",
"description": "Webaverse UI Kit",
"author": "Webaverse Web Developers",
"homepage": "https://github.com/webaverse-studios/webaverse-uikit/pkgs/npm/uikit",
"repository": {
"type": "git",
"url": "https://github.com/webaverse-studios/webaverse-uikit/pkgs/npm/uikit"
},
"files": [
"dist"
],
"main": "./dist/uikit.umd.cjs",
"module": "./dist/uikit.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/uikit.js",
"require": "./dist/uikit.umd.cjs"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest --passWithNoTests",
"coverage": "vitest run --coverage",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{jsx,ts,tsx}'",
"format": "prettier --write src/**/*.{ts,tsx,css}",
"prepare": "is-ci || husky install"
},
"peerDependencies": {
"react": "18.x",
"react-dom": "18.x"
},
"dependencies": {
"@floating-ui/react": "^0.19.2",
"classnames": "^2.3.2",
"deepmerge": "^4.3.0",
"framer-motion": "^9.0.7",
"prop-types": "^15.8.1",
"react": "18.x",
"react-dom": "18.x",
"tailwind-merge": "^1.10.0"
},
"devDependencies": {
"@storybook/addon-actions": "=7.0.0-beta.49",
"@storybook/addon-essentials": "=7.0.0-beta.49",
"@storybook/addon-interactions": "=7.0.0-beta.49",
"@storybook/addon-links": "=7.0.0-beta.49",
"@storybook/blocks": "=7.0.0-beta.49",
"@storybook/builder-vite": "=7.0.0-beta.49",
"@storybook/react": "=7.0.0-beta.49",
"@storybook/react-vite": "=7.0.0-alpha.25",
"@storybook/testing-library": "^0.0.14-next.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.14.0",
"@types/prop-types": "^15.7.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-react": "^3.1.0",
"alias-hq": "^6.1.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.34.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.11",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"postcss-nesting": "^11.2.1",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"react-docgen-typescript": "^2.2.2",
"storybook": "=7.0.0-beta.49",
"storybook-addon-designs": "=7.0.0-beta.2",
"storybook-dark-mode": "^2.1.1",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vite": "^4.1.3",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-dts": "^1.7.3",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "^0.28.5"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn lint",
"yarn format"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"configurationDefaults": {
"[typescript]": {
"editor.semanticHighlighting.enabled": true
}
}
}