-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 1010 Bytes
/
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
{
"name": "multisig_ink",
"version": "1.0.0",
"author": "0xLucca",
"license": "GPLv3",
"scripts": {
"test": "yarn mocha --config .mocharc.json",
"clean": "rm -rf ./typed_contracts/* && rm -rf ./artifacts/*",
"build": "cd contracts && cargo contract build --release && cd .. && mkdir -p artifacts && cp contracts/target/ink/multisig.contract artifacts/multisig.contract && cp contracts/target/ink/multisig.json artifacts/multisig.json && npx @727-ventures/typechain-polkadot --input artifacts --output typed_contracts",
"exe": "npx ts-node"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@727-ventures/typechain-polkadot": "^1.1.0",
"@727-ventures/typechain-types": "^1.1.0",
"@polkadot/api": "^10.7.2",
"@types/node": "^18",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"ts-node": "^10.9.1"
}
}