-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.56 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.56 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "bringid",
"version": "0.6.0-beta",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"default": "./dist/react.js"
}
},
"typesVersions": {
"*": {
"react": [
"dist/react.d.ts"
]
}
},
"scripts": {
"build": "rm -rf ./dist && webpack && yarn build:types",
"build:types": "tsc --emitDeclarationOnly && mv dist/react-entry.d.ts dist/react.d.ts",
"test": "env-cmd mocha './src/test/{,+(helpers|modules)}/**/*.ts' --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bringid/bringid-sdk.git"
},
"license": "MIT",
"description": "",
"bugs": {
"url": "https://github.com/bringid/bringid-sdk/issues"
},
"engines": {
"node": ">=16.x"
},
"homepage": "https://github.com/bringid/bringid-sdk#readme",
"keywords": [],
"dependencies": {
"@farcaster/miniapp-sdk": "^0.2.3",
"@semaphore-protocol/core": "^4.13.1",
"@semaphore-protocol/identity": "^4.13.1",
"react-redux": "^8.1.2",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"styled-components": "^6.1.18"
},
"peerDependencies": {
"@coinbase/wallet-sdk": "^4.3.7",
"react": "^19",
"react-dom": "^19"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/plugin-syntax-import-assertions": "^7.27.1",
"@babel/plugin-syntax-import-attributes": "^7.27.1",
"@babel/plugin-transform-private-methods": "^7.22.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.18.6",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-loader": "8.1.0",
"chai": "^4.2.0",
"css-loader": "^6.7.3",
"dotenv": "^17.2.3",
"env-cmd": "^10.1.0",
"ethers": "^6.16.0",
"file-loader": "^6.2.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^2.9.4",
"mocha": "^10.4.0",
"node-fetch": "^2.6.6",
"postcss-loader": "^7.3.3",
"react": "^19",
"react-dom": "^19",
"sass": "^1.89.2",
"sass-loader": "^16.0.5",
"style-loader": "^3.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"browserslist": [
">0.2%",
"not dead"
]
}