-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 952 Bytes
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 952 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
{
"name": "partiful-cli",
"version": "2.1.0",
"description": "CLI for creating and managing Partiful events via API — JSON-first, agent-friendly",
"type": "module",
"bin": {
"partiful": "./bin/partiful"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"start": "node --import tsx bin/partiful"
},
"keywords": [
"partiful",
"events",
"cli",
"party",
"rsvp",
"agent",
"ai"
],
"repository": {
"type": "git",
"url": "https://github.com/KalebCole/partiful-cli"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin/",
"src/",
"skills/",
".env.example"
],
"dependencies": {
"commander": "^13.0.0",
"dotenv": "^16.4.0",
"tsx": "^4.23.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^26.1.1",
"typescript": "^7.0.2",
"vitest": "^3.0.0"
},
"license": "MIT"
}