-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.05 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
65
66
67
68
69
70
71
72
73
74
{
"name": "near-safe",
"version": "0.0.0",
"license": "MIT",
"description": "An SDK for controlling Ethereum Smart Accounts via ERC4337 from a Near Account.",
"author": "bh2smith",
"repository": {
"type": "git",
"url": "https://github.com/BitteProtocol/near-safe"
},
"bugs": {
"url": "https://github.com/BitteProtocol/near-safe/issues"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"near",
"ethereum",
"safe",
"account-abstraction",
"erc4337",
"chain-signatures"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rm -fr dist/* && yarn build:esm && yarn build:cjs",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:deployments": "tsx scripts/safe-deployments.ts && prettier --write 'src/_gen/**/*.ts'",
"start": "yarn example",
"example": "tsx examples/send-tx.ts",
"lint": "eslint . --ignore-pattern dist/",
"fmt": "prettier --write '{src,examples,tests}/**/*.{js,jsx,ts,tsx}' && yarn lint --fix",
"test": "jest",
"all": "yarn fmt && yarn lint && yarn build"
},
"dependencies": {
"@safe-global/safe-gateway-typescript-sdk": "^3.22.2",
"near-api-js": "^5.0.0",
"near-ca": "^0.6.0",
"semver": "^7.6.3",
"viem": "^2.16.5"
},
"devDependencies": {
"@safe-global/safe-deployments": "^1.37.0",
"@safe-global/safe-modules-deployments": "^2.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.3.0",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"dotenv": "^16.4.5",
"eslint": "^9.6.0",
"eslint-plugin-import": "^2.30.0",
"ethers": "^6.13.1",
"ethers-multisend": "^3.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"tsx": "^4.16.0",
"typescript": "^5.5.2",
"yargs": "^17.7.2"
},
"resolutions": {
"glob": "^11.0.0"
}
}