@attest-it/cli 0.7.0 → 0.9.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.
@@ -0,0 +1,55 @@
1
+ # yaml-language-server: $schema=https://raw.githubusercontent.com/mike-north/attest-it/main/schemas/v1/project-config.schema.json
2
+ # attest-it configuration
3
+ # See https://github.com/attest-it/attest-it for documentation
4
+
5
+ version: 1
6
+
7
+ settings:
8
+ # How long attestations remain valid (in days)
9
+ maxAgeDays: 30
10
+ # Path to the attestations file
11
+ attestationsPath: .attest-it/attestations.json
12
+
13
+ # Team members who can sign attestations.
14
+ # Add members with: attest-it team join (for yourself) or team add (for others)
15
+ #
16
+ # team:
17
+ # mike-north:
18
+ # name: Mike North
19
+ # email: mike@example.com
20
+ # github: mike-north
21
+ # publicKey: Fzpq2YHEvpA2BwjGnW5ZcZF+WyUbsiyTFFMjPEK3SfA=
22
+ # publicKeyAlgorithm: ed25519
23
+
24
+ team: {}
25
+
26
+ # Gates define what code areas require attestation and who can sign.
27
+ #
28
+ # Example:
29
+ #
30
+ # gates:
31
+ # cli-interactive:
32
+ # name: CLI Interactive Tests
33
+ # description: Manual verification of interactive CLI experiences
34
+ # authorizedSigners:
35
+ # - mike-north
36
+ # fingerprint:
37
+ # paths:
38
+ # - packages/cli/src/commands
39
+ # exclude:
40
+ # - '**/*.spec.ts'
41
+ # maxAge: 90d
42
+
43
+ gates: {}
44
+
45
+ # Suites define test commands that produce attestations.
46
+ #
47
+ # Example:
48
+ #
49
+ # suites:
50
+ # visual-tests:
51
+ # description: Visual regression tests requiring human review
52
+ # gate: cli-interactive
53
+ # command: pnpm vitest packages/ui
54
+
55
+ suites: {}
package/package.json CHANGED
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "name": "@attest-it/cli",
3
- "version": "0.7.0",
3
+ "version": "0.9.0",
4
4
  "author": "Mike North <michael.l.north@gmail.com>",
5
5
  "bin": {
6
6
  "attest": "./dist/bin/attest-it.js",
7
7
  "attest-it": "./dist/bin/attest-it.js"
8
8
  },
9
9
  "dependencies": {
10
- "@inkjs/ui": "^2.0.0",
11
10
  "@inquirer/prompts": "^7.0.0",
12
11
  "@pnpm/tabtab": "^0.5.4",
13
12
  "chromaterm": "^0.1.0",
@@ -16,7 +15,7 @@
16
15
  "react": "^18.3.1",
17
16
  "shell-quote": "^1.8.3",
18
17
  "yaml": "^2.8.2",
19
- "@attest-it/core": "0.7.0"
18
+ "@attest-it/core": "0.9.0"
20
19
  },
21
20
  "devDependencies": {
22
21
  "@types/node": "~22.19.3",