-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.26 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.26 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
{
"name": "@etherspot/transaction-kit",
"description": "Framework-agnostic Etherspot Transaction Kit",
"version": "2.1.4",
"main": "dist/cjs/index.js",
"scripts": {
"rollup:build": "NODE_OPTIONS=--max-old-space-size=8192 rollup -c --bundleConfigAsCjs",
"rollup:watch": "rimraf ./node_modules/react ./node_modules/react-dom && rollup -c -w --bundleConfigAsCjs",
"test": "jest __tests__ --silent --detectOpenHandles",
"test:watch": "jest --watch",
"lint": "eslint 'lib/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint 'lib/**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier --write 'lib/**/*.{js,jsx,ts,tsx,json,css,scss,md}'"
},
"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/modular-sdk": "6.1.1",
"@zerodev/sdk": "^5.5.3",
"buffer": "6.0.3",
"lodash": "4.17.21",
"viem": "2.38.0"
},
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"testEnvironment": "jsdom",
"devDependencies": {
"@babel/core": "7.22.0",
"@babel/preset-env": "7.22.0",
"@babel/preset-typescript": "7.21.5",
"@jest/globals": "29.3.1",
"@rollup/plugin-replace": "5.0.3",
"@rollup/plugin-typescript": "11.1.2",
"@types/jest": "29.2.5",
"@types/lodash.uniq": "4.5.7",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-jest": "29.7.0",
"babel-loader": "8.2.5",
"dotenv": "16.0.3",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.3.1",
"jest-fixed-jsdom": "0.0.9",
"prettier": "3.3.3",
"rimraf": "5.0.1",
"rollup": "3.29.5",
"rollup-plugin-dts": "6.1.1",
"typescript": "5.7.3"
}
}