-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 812 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 812 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
{
"name": "uni-cli",
"version": "0.1.0",
"private": true,
"description": "Universal CLI for everything - wrap MCPs, APIs, and CLIs into one interface",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "bun run --filter @uni/cli dev",
"build": "bun run --filter '*' build",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"lint": "biome check .",
"format": "biome format --write .",
"uni": "bun run packages/cli/src/main.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/bun": "latest",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20",
"bun": ">=1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/shockz/uni-cli"
},
"license": "MIT"
}