-
Notifications
You must be signed in to change notification settings - Fork 463
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.23 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.23 KB
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
{
"name": "@storefront-ui/react",
"version": "2.2.2-rc.0",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs.js"
},
"./tailwind-config": {
"types": "./dist/tailwind-config.d.ts",
"import": "./dist/tailwind-config.mjs",
"require": "./dist/tailwind-config.cjs.js"
},
"./*": "./*"
},
"typesVersions": {
"*": {
"tailwind-config": [
"dist/tailwind-config"
]
}
},
"source": "index.ts",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"scripts": {
"build:react": "vite build",
"lint": "yarn dlx browserslist@latest && yarn lint:script",
"lint:fix": "yarn lint:script:fix",
"lint:fix:sfui": "yarn lint:fix",
"lint:script": "concurrently \"yarn eslint --max-warnings 0\" \"yarn prettier --check\"",
"lint:script:fix": "yarn eslint --fix && yarn prettier --write",
"eslint": "eslint \"{components,shared,hooks}/**/*.{ts,tsx}\"",
"prettier": "prettier --loglevel warn --no-error-on-unmatched-pattern \"{components,shared,hooks}/**/*.{ts,tsx}\""
},
"files": [
"dist"
],
"dependencies": {
"@floating-ui/react-dom": "^1.3.0",
"@storefront-ui/shared": "workspace:*",
"@storefront-ui/tailwind-config": "workspace:*",
"classnames": "^2.3.2",
"jw-paginate": "^1.0.4",
"react-polymorphed": "^2.1.0",
"react-transition-group": "^4.4.5",
"react-use": "^17.4.0",
"tabbable": "^6.1.1"
},
"devDependencies": {
"@storefront-ui/eslint-config": "workspace:*",
"@storefront-ui/tests-shared": "workspace:*",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.34.0",
"prettier": "^2.8.8",
"vite": "^4.3.0",
"vite-plugin-dts": "^2.0.0-beta.1",
"vite-tsconfig-paths": "^4.0.5"
},
"peerDependencies": {
"react": "^18.2.0"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://docs.storefrontui.io/v2/#react",
"repository": {
"type": "git",
"url": "git+https://github.com/vuestorefront/storefront-ui.git",
"directory": "packages/sfui/frameworks/react"
},
"bugs": {
"url": "https://github.com/vuestorefront/storefront-ui/issues"
}
}