@tested/cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@tested/cli",
3
+ "version": "0.1.0",
4
+ "description": "Coverage your agent can use. CLI for patch + project coverage with agent-readable JSON output.",
5
+ "license": "MIT",
6
+ "homepage": "https://tested.dev",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/tested-hq/cli.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/tested-hq/cli/issues"
13
+ },
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "type": "module",
18
+ "packageManager": "pnpm@11.3.0",
19
+ "bin": {
20
+ "tested": "./dist/tested.js",
21
+ "td": "./dist/td.js"
22
+ },
23
+ "files": [
24
+ "dist",
25
+ "README.md",
26
+ "LICENSE"
27
+ ],
28
+ "scripts": {
29
+ "build": "tsup",
30
+ "dev": "tsx bin/tested.ts",
31
+ "test": "vitest run",
32
+ "test:watch": "vitest",
33
+ "test:coverage": "vitest run --coverage",
34
+ "typecheck": "tsc --noEmit",
35
+ "prepare": "node ./scripts/prepare.mjs",
36
+ "prepublishOnly": "pnpm run build"
37
+ },
38
+ "engines": {
39
+ "node": ">=20.19.0"
40
+ },
41
+ "dependencies": {
42
+ "commander": "14.0.3",
43
+ "minimatch": "10.2.5",
44
+ "picocolors": "1.1.1",
45
+ "simple-git": "3.36.0",
46
+ "yaml": "2.9.0",
47
+ "zod": "4.4.3"
48
+ },
49
+ "devDependencies": {
50
+ "@types/node": "25.9.1",
51
+ "@vitest/coverage-v8": "4.1.7",
52
+ "husky": "9.1.7",
53
+ "is-ci": "3.0.1",
54
+ "tsup": "8.5.1",
55
+ "tsx": "4.22.3",
56
+ "typescript": "6.0.3",
57
+ "vite": "8.0.14",
58
+ "vitest": "4.1.7"
59
+ }
60
+ }