forked from near/near-api-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 2.73 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
{
"name": "@near-js/cookbook",
"private": true,
"version": "1.0.23",
"description": "",
"main": "index.ts",
"type": "module",
"author": "",
"license": "ISC",
"scripts": {
"build": "tsc -p tsconfig.json",
"addFullAccessKey": "tsx -e \"import f from './accounts/access-keys/create-full-access-key.ts'; f(...process.argv.slice(1));\"",
"addFunctionCallAccessKey": "tsx -e \"import f from './accounts/access-keys/create-function-access-key.ts'; f(...process.argv.slice(1));\"",
"batchTransactions": "tsx -e \"import f from './transactions/batch-transactions.ts'; f(...process.argv.slice(1));\"",
"calculateGas": "tsx -e \"import f from './utils/calculate-gas.ts'; f(...process.argv.slice(1));\"",
"checkAccountExists": "tsx -e \"import f from './utils/check-account-existence.ts'; f(...process.argv.slice(1));\"",
"createFundedTestnetAccount": "tsx -e \"import f from './accounts/create-funded-testnet-account.ts'; f(...process.argv.slice(1));\"",
"createMainnetAccount": "tsx -e \"import f from './accounts/create-mainnet-account.ts'; f(...process.argv.slice(1));\"",
"createTestnetAccount": "tsx -e \"import f from './accounts/create-testnet-account.ts'; f(...process.argv.slice(1));\"",
"deleteAccessKey": "tsx -e \"import f from './accounts/access-keys/delete-access-key.ts'; f(...process.argv.slice(1));\"",
"deployContract": "tsx -e \"import f from './utils/deploy-contract.ts'; f(...process.argv.slice(1));\"",
"getState": "tsx -e \"import f from './utils/get-state.ts'; f(...process.argv.slice(1));\"",
"getTransactionStatus": "tsx -e \"import f from './transactions/get-tx-status.ts'; f(...process.argv.slice(1));\"",
"metaTransaction": "tsx -e \"import f from './transactions/meta-transaction.ts'; f(...process.argv.slice(1));\"",
"metaTransactionRelayer": "tsx -e \"import f from './transactions/meta-transaction-relayer.ts'; f(...process.argv.slice(1));\"",
"traverseBlocks": "tsx -e \"import f from './transactions/traverse-blocks.ts'; f(...process.argv.slice(1));\"",
"unwrapNear": "tsx -e \"import f from './utils/unwrap-near.ts'; f(...process.argv.slice(1));\"",
"verifySignature": "tsx -e \"import f from './utils/verify-signature.ts'; f(...process.argv.slice(1));\"",
"wrapNear": "tsx -e \"import f from './utils/wrap-near.ts'; f(...process.argv.slice(1));\""
},
"devDependencies": {
"@near-js/client": "workspace:*",
"@near-js/crypto": "workspace:*",
"@near-js/keystores-node": "workspace:*",
"@near-js/transactions": "workspace:*",
"@near-js/utils": "workspace:*",
"build": "workspace:*",
"chalk": "4.1.1",
"homedir": "0.6.0",
"near-api-js": "workspace:*",
"ts-node": "^10.9.2",
"tsconfig": "workspace:*",
"typescript": "5.4.5"
}
}