-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.87 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "ethcast",
"title": "ethcast",
"description": "Useful tools for web3 developers",
"icon": "extension-icon.png",
"author": "regohiro",
"categories": [
"Developer Tools"
],
"license": "MIT",
"commands": [
{
"name": "random-accounts",
"title": "Create Random Accounts",
"description": "Creates 10 accounts from a random seed phrase",
"mode": "view"
},
{
"name": "eth-constants",
"title": "Search Web3 Constants",
"description": "Commonly used web3 constants from ethers.js",
"mode": "view"
},
{
"name": "unit-converter",
"title": "Convert Ethereum Units",
"description": "A simple Ethereum unit converter inspired by eth-converter.com",
"mode": "view"
},
{
"name": "function-signature",
"title": "Search Function Signature",
"description": "Search function signature from openchain.xyz",
"mode": "view"
}
],
"preferences": [
{
"name": "accounts",
"description": "Number of accounts to generate from the mnemonic.",
"type": "textfield",
"required": false,
"title": "Number of accounts to generate",
"default": "10"
}
],
"dependencies": {
"@raycast/api": "^1.48.3",
"axios": "^1.3.4",
"bignumber.js": "^9.1.1",
"ethers": "^5.7.2",
"fuse.js": "^6.6.2"
},
"devDependencies": {
"@types/node": "18.8.3",
"@types/react": "18.0.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "ray publish"
}
}