-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1 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
{
"name": "agentmint",
"version": "0.0.1",
"description": "Provision agent accounts (secrets, email, chat) and export configs for agent runtimes.",
"type": "module",
"bin": {
"agentmint": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/cli.js",
"test": "node -e \"console.log('no tests yet')\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"keywords": [
"agents",
"cli",
"provisioning",
"secrets",
"bitwarden",
"telegram",
"slack"
],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^14.0.3",
"fs-extra": "^11.3.3",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.2.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}