-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
38 lines (38 loc) · 961 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
31
32
33
34
35
36
37
38
{
"name": "starknet-cli-wallet",
"version": "0.2.2",
"description": "Example of a starknet wallet implemented with starknetjs",
"main": "index.js",
"bin": {
"starknet-cli-wallet": "./dist/src/index.js"
},
"types": "./dist/types/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"test": "mocha -r ts-node/register test/**",
"build": "tsc",
"semantic-release": "npm publish"
},
"author": "amanusk",
"license": "MIT",
"dependencies": {
"@scure/starknet": "^1.0.0",
"@types/commander": "^2.12.2",
"abi-wan-kanabi": "^2.0.0",
"commander": "^8.2.0",
"dotenv": "^10.0.0",
"ethers": "^6.3.0",
"starknet": "^6.7.0"
},
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "^16.9.2",
"chai": "^4.3.7",
"eslint": "^7.32.0",
"mocha": "^10.2.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"yarn-upgrade-all": "^0.5.4"
}
}