This repository was archived by the owner on Jun 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.42 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@sqds/cli",
"version": "3.0.0",
"description": "CLI Tool for interacting with the Squads V3 Multisig Solana Program",
"main": "bin/index.js",
"files": [
"bin/",
"stubs/",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"verify-clean": "test -z \"$(git status --porcelain -- src package.json tsconfig.json)\" || (echo 'ERROR: uncommitted changes to source (src/, package.json, tsconfig.json). Commit or stash before packing/publishing so the shipped bin/ is built from reviewed, committed source.' && exit 1)",
"prepack": "npm run verify-clean && rm -rf bin && npm run build",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.ts'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "Sean Ganser",
"email": "sean@sqds.io"
},
"keywords": [
"solana",
"multisig",
"cli",
"smart contract"
],
"repository": {
"type": "git",
"url": "https://github.com/squads-protocol/squads-cli"
},
"license": "AGPL-3.0-or-later",
"dependencies": {
"@coral-xyz/anchor": "0.26.0",
"@ledgerhq/errors": "6.15.0",
"@ledgerhq/hw-app-solana": "7.0.14",
"@ledgerhq/hw-transport-node-hid-noevents": "6.28.0",
"@marinade.finance/ledger-utils": "2.0.18",
"@marinade.finance/ts-common": "2.0.18",
"@metaplex-foundation/js": "0.20.1",
"@metaplex-foundation/mpl-token-metadata": "2.13.0",
"@solana/spl-token": "0.3.6",
"@solana/spl-token-registry": "0.2.4574",
"@solana/web3.js": "1.98.4",
"@sqds/sdk": "2.0.2",
"bs58": "5.0.0",
"chalk": "4.1.2",
"clear": "^0.1.0",
"clui": "0.3.6",
"figlet": "1.5.2",
"inquirer": "8.2.7",
"inquirer-press-to-continue": "1.1.4",
"tslib": "2.5.0",
"yargs": "17.6.2"
},
"bin": {
"squads-cli": "./bin/index.js"
},
"engines": {
"npm": ">=8.19.2",
"node": ">=16.0.0"
},
"devDependencies": {
"@types/clear": "0.1.2",
"@types/clui": "0.3.1",
"@types/figlet": "1.5.5",
"@types/inquirer": "9.0.3",
"@types/node": "18.14.6",
"@types/yargs": "17.0.22",
"typescript": "5.4.5",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"eslint": "8.57.0",
"ts-node": "10.9.1"
},
"overrides": {
"jayson": {
"uuid": "^11.1.1"
},
"@irys/sdk": "file:./stubs/irys-sdk",
"bn.js@<4.12.3": "4.12.3",
"cross-fetch@<3.1.5": "^3.1.5"
}
}