-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
60 lines (60 loc) · 1.61 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": "near-ca",
"version": "0.0.0",
"license": "MIT",
"description": "An SDK for controlling Ethereum Accounts from a Near Account.",
"author": "@bh2smith",
"repository": {
"type": "git",
"url": "https://github.com/BitteProtocol/near-ca"
},
"bugs": {
"url": "https://github.com/BitteProtocol/near-ca/issues"
},
"keywords": [
"near",
"ethereum",
"chain-signatures"
],
"main": "dist/cjs/index.js",
"module": "dist/mjs/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",
"lint": "eslint . --ignore-pattern dist/ && prettier --check **/*.ts",
"test": "jest --passWithNoTests",
"coverage": "yarn test --coverage",
"verify": "yarn coverage unit",
"fmt": "prettier --write '{src,examples,tests}/**/*.{js,jsx,ts,tsx}' && eslint src/ --fix"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/elliptic": "^6.4.18",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"dotenv": "^16.4.5",
"eslint": "^9.7.0",
"ethers": "^6.13.3",
"jest": "^v30.0.0-alpha.6",
"opensea-js": "^7.1.12",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"dependencies": {
"@walletconnect/web3wallet": "^1.13.0",
"elliptic": "^6.5.6",
"near-api-js": "^5.0.0",
"viem": "^2.21.37"
}
}