-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1018 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1018 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
{
"name": "agentv",
"version": "0.5.1",
"description": "CLI entry point for AgentV",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/EntityProcess/agentv.git"
},
"homepage": "https://github.com/EntityProcess/agentv#readme",
"bugs": {
"url": "https://github.com/EntityProcess/agentv/issues"
},
"bin": {
"agentv": "./dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup",
"prepublishOnly": "node -e \"require('fs').cpSync('../../README.md', 'README.md')\"",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@agentv/core": "workspace:*",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"log-update": "^7.0.1",
"micromatch": "^4.0.8",
"yaml": "^2.6.1"
},
"devDependencies": {
"execa": "^9.3.0"
}
}