-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
60 lines (60 loc) · 1.36 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
{
"name": "@soroban-react/events",
"keywords": [
"soroban-react",
"freighter",
"react",
"react-hooks",
"hooks",
"stellar",
"javascript",
"typescript",
"web3",
"context",
"frontend",
"dapp"
],
"license": "Apache-2.0",
"repository": "github:esteblock/soroban-react",
"version": "9.3.0",
"scripts": {
"prebuild-windows": "del /s /q dist",
"prebuild": "rm -rf dist",
"build-windows": "yarn prebuild && tsc",
"build": "yarn prebuild && tsc",
"start": "tsc --watch",
"test-windows": "yarn build-windows && yarn jest",
"test": "yarn build && yarn jest"
},
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"jest": {
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"collectCoverage": true
},
"dependencies": {
"@soroban-react/core": "^9.3.0",
"@soroban-react/types": "^9.1.13",
"soroban-client": "1.0.0-beta.4"
},
"devDependencies": {
"@babel/preset-react": "^7.22.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.2",
"@types/react": "^18.0.25",
"install-peers-cli": "^2.2.0",
"jest": "^29.5.0",
"jsdom": "^22.1.0",
"ts-jest": "^29.1.0"
},
"peerDependencies": {
"react": ">=16.8"
},
"gitHead": "d91929201aef5960ccfaeedd3dbfeb83bd1d3918"
}