forked from labscommunity/arweave-wallet-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.07 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
{
"name": "arweave-wallet-kit",
"private": false,
"version": "1.0.3",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"fmt": "prettier . --write"
},
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"dependencies": {
"@callstack/react-theme-provider": "^3.0.8",
"@iconicicons/react": "^1.5.1",
"@linaria/babel-preset": "^4.4.5",
"@linaria/core": "^4.2.10",
"@linaria/react": "^4.3.8",
"arweave": "^1.12.2",
"arweave-wallet-connector": "^0.0.31",
"framer-motion": "^8.1.9",
"othent": "^1.0.645",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@linaria/vite": "^4.2.11",
"@storybook/addon-actions": "^7.0.22",
"@storybook/addon-essentials": "^7.0.22",
"@storybook/addon-interactions": "^7.0.22",
"@storybook/addon-links": "^7.0.22",
"@storybook/react": "^7.0.22",
"@storybook/react-vite": "^7.0.22",
"@storybook/testing-library": "^0.1.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-helmet": "^6.1.6",
"@vitejs/plugin-react": "^3.0.0",
"arconnect": "^0.4.2",
"babel-loader": "^8.3.0",
"prettier": "^2.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-preserve-directives": "^0.2.0",
"storybook": "^7.0.22",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-css-injected-by-js": "^3.1.2",
"vite-plugin-dts": "^1.7.1"
},
"peerDependencies": {
"react": "^16.8.0 || 17.x || 18.x",
"react-dom": "^16.8.0 || 17.x || 18.x"
}
}