-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.75 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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "charged",
"title": "Charged: Starknet Shortcuts",
"description": "Shorcuts for common web3 tasks",
"icon": "icon.png",
"author": "apoorv",
"categories": [
"Developer Tools",
"Applications",
"Productivity"
],
"license": "MIT",
"commands": [
{
"name": "starknetConverterCommand",
"title": "Starknet Converter",
"description": "Convert between felts, integers, strings and hex",
"mode": "view",
"icon": "icon.png",
"subtitle": "Charged"
},
{
"name": "cairoBookCommand",
"title": "Starknet Cairo Book",
"description": "Search the Cairo book",
"mode": "view",
"icon": "icon.png",
"subtitle": "Charged"
},
{
"name": "starknetEcosystemSearchCommand",
"title": "Starknet Ecosystem",
"description": "Search the entire Starknet Ecosystem",
"mode": "view",
"icon": "icon.png",
"subtitle": "Charged"
},
{
"name": "starknetStatsCommand",
"title": "Starknet Stats",
"description": "Get live stats of Starknet",
"mode": "view",
"icon": "icon.png",
"subtitle": "Charged"
},
{
"name": "starknetChadsCommand",
"title": "Starknet Chads",
"description": "See top contributors on Starknet",
"mode": "view",
"icon": "icon.png",
"subtitle": "Charged"
},
{
"name": "starknetUtilsCommand",
"title": "Starknet Utils",
"description": "Common starknet utils taken from famous libraries",
"mode": "view",
"icon": "icon.png",
"subtitle": "Charged"
},
{
"name": "starknetTransactionBuilderCommand",
"title": "Starknet Transaction Builder",
"description": "Build and submit transactions",
"mode": "view",
"icon": "icon.png",
"subtitle": "Charged"
}
],
"dependencies": {
"@raycast/api": "^1.51.1",
"@types/uuid": "^9.0.1",
"axios": "^1.4.0",
"bn.js": "^5.2.1",
"debounce": "^1.2.1",
"mixpanel": "^0.17.0",
"starknet": "^5.10.2",
"ts-interface-checker": "^1.0.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@raycast/eslint-config": "1.0.5",
"@types/bn.js": "^5.1.1",
"@types/debounce": "^1.2.1",
"@types/mixpanel": "^2.14.4",
"@types/node": "18.8.3",
"@types/react": "18.0.9",
"eslint": "^7.32.0",
"prettier": "^2.5.1",
"ts-interface-builder": "^0.3.3",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish",
"build-runtime-type-checks": "ts-interface-builder src/utils/starknetJsTypes.ts"
}
}