-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "@keyper-labs/palmera-module-sdk",
"version": "1.0.0-beta.1",
"description": "Palmera module sdk",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"lint": "eslint src/**/*.ts",
"build": "rm -r ./dist & tsc",
"build:hardhat": "npx hardhat clean && npx hardhat compile",
"hardhat": "npx hardhat",
"node": "npx hardhat node",
"test": "npx hardhat test",
"docs": "jsdoc2md ./dist/src/Palmera.js > ./Palmera.md"
},
"author": "Keyper Labs (https://palmeradao.xyz)",
"license": "MIT",
"files": [
"dist"
],
"homepage": "https://palmeradao.xyz",
"keywords": [
"Ethereum",
"Safe",
"Palmera",
"DAO",
"SDK"
],
"devDependencies": {
"@eslint/js": "^9.9.1",
"@safe-global/safe-core-sdk-types": "5.1.0",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.3.0"
},
"dependencies": {
"@safe-global/api-kit": "^2.4.6",
"@safe-global/protocol-kit": "4.1.0",
"abitype": "1.0.2",
"dotenv": "^16.4.5",
"ethers": "^6.13.2",
"viem": "^2.20.0"
}
}