-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 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
61
62
63
64
{
"name": "@snowflake-so/safe-sdk",
"version": "1.0.9",
"description": "Snowflake Safe SDK - Interact with multisig wallets on Snowflake Safe",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn rimraf dist && tsc -p src",
"watch": "tsc -w -p src",
"lint": "npx eslint --debug '**/*.{js,ts}'",
"lint:fix": "npx eslint --fix '**/*.{js,ts}'",
"prettier:fix": "prettier --config .prettierrc.js '**/*.{js,ts}' --write",
"prettier:check": "prettier --config .prettierrc.js '**/*.{js,ts}' --check",
"prepublish": "tsc -p src",
"test": "jest"
},
"files": [
"/dist"
],
"keywords": [
"Snowflake Safe",
"solana",
"multisig",
"automation",
"sdk",
"cron"
],
"pre-commit": {
"run": [
"prettier:check",
"prettier:fix",
"lint"
]
},
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/snowflake-so/snowflake-safe-sdk"
},
"license": "ISC",
"dependencies": {
"@project-serum/anchor": "^0.24.2",
"@solana/web3.js": "^1.43.5",
"bn.js": "^5.2.1",
"buffer-layout": "^1.2.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.1.2",
"@types/bn.js": "^5.1.0",
"@types/jest": "^27.5.2",
"@types/mocha": "^9.1.0",
"@types/node-fetch": "^2.6.1",
"dotenv": "^16.0.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}