-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
127 lines (127 loc) · 3.7 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
120
121
122
123
124
125
126
127
{
"name": "@xyo-network/sdk-xyo-react",
"version": "4.3.5",
"description": "Common React library for all XYO projects that use React",
"keywords": [
"xyo",
"utility",
"typescript",
"react"
],
"homepage": "https://xyo.network",
"bugs": {
"url": "git+https://github.com/XYOracleNetwork/sdk-xyo-react-js/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XYOracleNetwork/sdk-xyo-react-js.git"
},
"license": "LGPL-3.0-only",
"author": {
"name": "XYO Development Team",
"email": "[email protected]",
"url": "https://xyo.network"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/browser/index.d.ts",
"default": "./dist/browser/index.mjs"
},
"./package.json": "./package.json",
"./README.md": "./README.md"
},
"module": "dist/browser/index.mjs",
"types": "dist/browser/index.d.ts",
"workspaces": [
"packages/**/*"
],
"scripts": {
"build": "xy build",
"build-storybook": "storybook build && copyfiles -u 1 storybook-static/**/* docs/storybook",
"build-storybook-debug": "storybook build --debug-webpack",
"build-typedoc-site": "typedoc",
"lint-pkg": "npmPkgJsonLint .",
"start": "storybook dev -p 6006"
},
"resolutions": {
"@types/react": "^18.3.18",
"ethers": "^6",
"typedoc": "0.26.3"
},
"dependencies": {
"@mui/icons-material": "^6.3.0",
"@mui/material": "^6.3.0",
"@mui/styles": "^6.3.0",
"@xylabs/pixel": "^2.0.6",
"@xyo-network/react-modules": "workspace:^",
"@xyo-network/react-plugins": "workspace:^",
"@xyo-network/react-sdk": "workspace:^",
"geojson": "^0.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@eslint-react/eslint-plugin": "^1.23.0",
"@mui/icons-material": "^6.3.0",
"@mui/material": "^6.3.0",
"@mui/styles": "^6.3.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/components": "^8.4.7",
"@storybook/core-events": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/theming": "^8.4.7",
"@stylistic/eslint-plugin": "^2.12.1",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"@xylabs/eslint-config-flat": "^4.2.6",
"@xylabs/eslint-config-react-flat": "^4.2.6",
"@xylabs/react-theme": "^5.3.15",
"@xylabs/ts-scripts-yarn3": "^4.2.6",
"@xylabs/tsconfig-react": "^4.2.6",
"chromatic": "^11.20.2",
"copyfiles": "^2.4.1",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"storybook": "^8.4.7",
"storybook-dark-mode": "^4.0.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-top-level-await": "^1.4.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"peerDependencies": {
"@emotion/react": "^11",
"@emotion/styled": "^11"
},
"packageManager": "[email protected]",
"volta": {
"node": "22.3.0",
"yarn": "1.22.22"
},
"publishConfig": {
"access": "public"
},
"//": [
"devDep"
],
"docs": "dist/docs.json",
"resolutions_comment": "We set the above resolutions to make sure we pull in the latest versions of these packages even if some sub packages request earlier versions"
}