-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.78 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.78 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "capiscio",
"version": "2.5.0",
"description": "The official CapiscIO CLI tool for validating A2A agents",
"keywords": [
"a2a",
"agent",
"validation",
"cli",
"protocol",
"ai",
"llm",
"agent-to-agent"
],
"repository": {
"type": "git",
"url": "https://github.com/capiscio/capiscio-node.git"
},
"bugs": {
"url": "https://github.com/capiscio/capiscio-node/issues"
},
"license": "Apache-2.0",
"author": "CapiscIO Team",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"capiscio": "./bin/capiscio.js"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run --config vitest.config.ts --dir tests/unit",
"test:unit": "vitest run --config vitest.config.ts --dir tests/unit",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"test:watch": "vitest --watch --config vitest.config.ts --dir tests/unit",
"test:coverage": "vitest run --coverage --config vitest.config.ts --dir tests/unit",
"test:all": "npm run test:unit && npm run test:e2e",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test:unit",
"start": "node bin/capiscio.js"
},
"dependencies": {
"axios": "^1.13.2",
"chalk": "^4.1.2",
"execa": "^5.1.1",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/node": "^20.8.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.4",
"tsup": "^8.5.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.57.1",
"vite": "^6.4.1",
"vitest": "^3.2.4"
}
}