-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.91 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.91 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
{
"name": "@thirdstorage/sdk",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"dependencies": {
"@arcana/auth-wagmi": "^0.0.2",
"@babel/core": "^7.20.12",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@rollup/browser": "^3.17.2",
"@rollup/plugin-json": "^6.0.0",
"@tanstack/query-sync-storage-persister": "^4.24.10",
"@tanstack/react-query": "^4.24.10",
"@tanstack/react-query-persist-client": "^4.24.10",
"@wagmi/core": "^0.9.7",
"@web3modal/ethereum": "^2.1.1",
"@web3modal/react": "^2.1.1",
"async-retry": "^1.3.3",
"axios": "^1.1.3",
"ethers": "^5.7.2",
"isomorphic-unfetch": "^3.1.0",
"lit-js-sdk": "^1.2.17",
"siwe": "^1.1.6",
"use-sync-external-store": "^1.2.0",
"wagmi": "^0.11.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThirdStorage/javascript-sdk"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"dev": "rollup -c -w"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-sucrase": "^5.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/react": "^18.0.28",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.17.2",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-sass": "^1.12.17",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}