-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.94 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
{
"name": "@evo-web/react",
"version": "0.0.3",
"description": "Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.",
"keywords": [
"React",
"eBay Evo",
"evo-web",
"components",
"design-system"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eBay/evo-web.git",
"directory": "packages/evo-react"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./evo-icon-*": {
"types": "./dist/evo-icon/icons/evo-icon-*.d.ts",
"default": "./dist/evo-icon/icons/evo-icon-*.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run type:check && npm run test && vite build",
"build:storybook": "storybook build -o ./_site/evo-react/$(git branch --show-current)",
"deploy": "exit 0",
"format": "eslint . --fix && prettier . --write --log-level=warn",
"lint": "eslint . && prettier . --check --log-level=warn",
"release": "npm run build",
"start": "storybook dev -p 9001",
"test": "vitest run --browser.headless --passWithNoTests",
"type:check": "tsc --noEmit",
"update-icons": "tsx scripts/import-svg.ts",
"version": "npm run update-icons && git add -A src"
},
"dependencies": {
"@floating-ui/react": "^0.27.17",
"classnames": "^2.5.1",
"makeup-active-descendant": "^0.7.11",
"makeup-expander": "^0.11.10",
"makeup-floating-label": "^0.4.9",
"makeup-focusables": "^0.4.6",
"makeup-keyboard-trap": "^0.5.8",
"makeup-prevent-scroll-keys": "^0.3.5",
"makeup-roving-tabindex": "^0.7.8",
"makeup-screenreader-trap": "^0.5.7",
"makeup-typeahead": "^0.3.5",
"react-remove-scroll": "^2.7.2"
},
"peerDependencies": {
"@ebay/skin": "^19",
"react": "^19",
"react-dom": "^19"
}
}