forked from BitteProtocol/near-ca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "near-ca",
"module": "index.ts",
"version": "0.0.0-alpha.1",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rm -rf ./dist && tsc",
"lint": "eslint . --ignore-pattern dist/",
"test": "jest --testTimeout 30000",
"fmt": "prettier --write '{src,examples,tests}/**/*.{js,jsx,ts,tsx}'"
},
"devDependencies": {
"@types/elliptic": "^6.4.18",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"dotenv": "^16.4.5",
"eslint": "^9.2.0",
"ethers": "^6.12.0",
"jest": "^29.7.0",
"opensea-js": "^7.1.9",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@near-wallet-selector/core": "^8.9.5",
"@walletconnect/web3wallet": "^1.12.0",
"elliptic": "^6.5.5",
"near-api-js": "^3.0.3",
"viem": "^2.10.8"
}
}