agentprofiles-cli 0.3.0 → 0.4.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 CHANGED
@@ -1,20 +1,21 @@
1
1
  {
2
2
  "name": "agentprofiles-cli",
3
- "version": "0.3.0",
4
- "description": "Manage configuration profiles for LLM agent tools via direnv",
3
+ "version": "0.4.0",
4
+ "description": "Manage configuration profiles for LLM agent tools",
5
5
  "keywords": [
6
6
  "cli",
7
- "direnv",
8
7
  "llm",
9
8
  "agent",
10
9
  "configuration",
11
10
  "profiles"
12
11
  ],
12
+ "homepage": "https://github.com/hashintel/labs/tree/main/apps/agentprofiles-cli#readme",
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "git@github.com:lunelson/agentprofiles-cli.git"
15
+ "url": "https://github.com/hashintel/labs",
16
+ "directory": "apps/agentprofiles-cli"
16
17
  },
17
- "license": "MIT",
18
+ "license": "(MIT OR Apache-2.0)",
18
19
  "author": {
19
20
  "name": "Lu Nelson"
20
21
  },
@@ -34,36 +35,39 @@
34
35
  "lint:fix": "eslint src/ --fix",
35
36
  "prepack": "RELEASE=true npm run build",
36
37
  "prepublishOnly": "npm test",
37
- "release": "np",
38
- "smoke": "./scripts/smoke-envrc.sh",
38
+ "release": "release-it",
39
+ "release:ci": "release-it --ci",
40
+ "release:dry": "release-it --dry-run --no-github.release",
41
+ "smoke": "./scripts/smoke.sh",
39
42
  "start": "tsx src/index.ts",
40
43
  "test": "vitest run",
41
44
  "test:watch": "vitest",
42
45
  "typecheck": "tsc --noEmit"
43
46
  },
44
47
  "dependencies": {
45
- "@clack/prompts": "^0.11.0",
46
- "@criblinc/docker-names": "^1.2.2",
47
- "citty": "^0.2.0",
48
+ "@clack/prompts": "^1.0.1",
49
+ "citty": "^0.2.1",
50
+ "joyful": "^1.1.0",
48
51
  "picocolors": "^1.1.1",
49
52
  "update-notifier": "^7.3.1",
50
- "zod": "^4.3.5"
53
+ "zod": "^4.3.6"
51
54
  },
52
55
  "devDependencies": {
53
56
  "@eslint/js": "^9.39.2",
54
57
  "@tsconfig/node18": "^18.2.4",
55
58
  "@tsconfig/strictest": "^2.0.8",
56
- "@types/node": "^25.0.8",
59
+ "@types/node": "^25.3.0",
57
60
  "@types/update-notifier": "^6.0.8",
58
61
  "eslint": "^9.39.2",
59
62
  "eslint-config-prettier": "^10.1.8",
60
63
  "execa": "^9.6.1",
61
- "prettier": "^3.8.0",
64
+ "prettier": "^3.8.1",
65
+ "release-it": "^19.2.4",
62
66
  "tsup": "^8.3.0",
63
67
  "tsx": "^4.21.0",
64
68
  "typescript": "^5.9.3",
65
- "typescript-eslint": "^8.53.1",
66
- "vitest": "^4.0.17"
69
+ "typescript-eslint": "^8.56.0",
70
+ "vitest": "^4.0.18"
67
71
  },
68
72
  "engines": {
69
73
  "node": ">=18"