-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.43 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.43 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
{
"name": "@dotaislash/cli",
"version": "1.0.0",
"type": "module",
"description": "Reference CLI for VERSA 1.0 - Vendor-neutral Extensible Repo Spec for Agents",
"keywords": [
"versa",
"ai",
"agents",
"cli",
"dotaislash",
"configuration"
],
"bin": {
"versa": "./dist/bin.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"clean": "rm -rf dist",
"prepublishOnly": "bun run clean && bun run build && bun test"
},
"dependencies": {
"@dotaislash/schemas": "link:@dotaislash/schemas",
"chalk": "^5.3.0",
"commander": "^14.0.1",
"glob": "^11.0.3",
"ora": "^9.0.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/node": "^24.8.1",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"eslint": "^9.38.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22.16.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dotAIslash/dotaislash-cli.git"
},
"bugs": {
"url": "https://github.com/dotAIslash/dotaislash-cli/issues"
},
"homepage": "https://dotaislash.github.io",
"author": "Alphin Tom <alphinctom@gmail.com>"
}