-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1022 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 1022 Bytes
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
{
"name": "dropcast-cli",
"version": "0.1.4",
"description": "CLI + Agent Skill for creating DropCast campaigns via API",
"type": "module",
"bin": {
"dropcast-cli": "./dist/index.js"
},
"files": [
"dist",
"skill",
"examples"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"commander": "^13.1.0",
"dotenv": "^16.4.7",
"viem": "^2.23.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"homepage": "https://github.com/cyh76507707/dropcast-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/cyh76507707/dropcast-cli.git"
},
"keywords": [
"dropcast",
"farcaster",
"airdrop",
"campaign",
"cli"
]
}