forked from Trust-Machines/multisafe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.19 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
{
"name": "@trustmachines/multisafe-contracts",
"description": "MultiSafe is a shared crypto wallet for managing Stacks (STX) and Bitcoin (BTC).",
"version": "0.3.4",
"main": "build/lib/index.js",
"types": "build/lib/index.d.ts",
"scripts": {
"test": "jest --config jest.config.json --no-cache",
"build": "tsc -p tsconfig.release.json",
"prepublish": "npm run test && npm run build"
},
"files": [
"build/lib/index.d.ts",
"build/lib/index.js",
"lib/index.ts",
"contracts/safe.clar",
"contracts/traits.clar",
"contracts/executors/add-owner.clar",
"contracts/executors/remove-owner.clar",
"contracts/executors/set-threshold.clar",
"contracts/executors/transfer-sip-009.clar",
"contracts/executors/transfer-sip-010.clar",
"contracts/executors/transfer-stx.clar",
"contracts/executors/magic-bridge-send.clar",
"contracts/helper/ft-none.clar",
"contracts/helper/nft-none.clar"
],
"dependencies": {
"@stacks/transactions": "^4.0.0",
"@stacks/wallet-sdk": "^4.0.0",
"@types/jest": "^27.4.1",
"dotenv": "^16.0.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
}
}