-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.83 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
{
"name": "@etherspot/transaction-kit",
"description": "React Etherspot Transaction Kit",
"version": "0.6.11",
"main": "dist/cjs/index.js",
"scripts": {
"rollup:build": "NODE_OPTIONS=--max-old-space-size=8192 rollup -c",
"rollup:watch": "rimraf ./node_modules/react ./node_modules/react-dom && rollup -c -w",
"test": "jest __tests__ --silent",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etherspot/transaction-kit.git"
},
"keywords": [],
"author": "Etherspot",
"license": "MIT",
"bugs": {
"url": "https://github.com/etherspot/transaction-kit/issues"
},
"homepage": "https://github.com/etherspot/transaction-kit#readme",
"dependencies": {
"@etherspot/eip1271-verification-util": "0.1.2",
"@etherspot/prime-sdk": "1.3.12",
"buffer": "^6.0.3",
"ethers": "^5.6.9",
"lodash": "^4.17.21"
},
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"testEnvironment": "jsdom",
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.3.1",
"@lifi/types": "^9.2.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^8.3.3",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.2.5",
"@types/lodash.uniq": "^4.5.7",
"@types/react": "^18.0.15",
"babel-jest": "^29.3.1",
"babel-loader": "^8.2.5",
"dotenv": "^16.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^2.76.0",
"rollup-plugin-dts": "^4.2.3",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": ">=16.13.0"
}
}