agentprofiles-cli 0.3.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,71 @@
1
+ {
2
+ "name": "agentprofiles-cli",
3
+ "version": "0.3.0",
4
+ "description": "Manage configuration profiles for LLM agent tools via direnv",
5
+ "keywords": [
6
+ "cli",
7
+ "direnv",
8
+ "llm",
9
+ "agent",
10
+ "configuration",
11
+ "profiles"
12
+ ],
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git@github.com:lunelson/agentprofiles-cli.git"
16
+ },
17
+ "license": "MIT",
18
+ "author": {
19
+ "name": "Lu Nelson"
20
+ },
21
+ "type": "module",
22
+ "bin": {
23
+ "agentprofiles": "./dist/index.js"
24
+ },
25
+ "files": [
26
+ "dist"
27
+ ],
28
+ "scripts": {
29
+ "build": "tsup",
30
+ "dev": "tsup --watch",
31
+ "format": "prettier --write .",
32
+ "format:check": "prettier --check .",
33
+ "lint": "eslint src/",
34
+ "lint:fix": "eslint src/ --fix",
35
+ "prepack": "RELEASE=true npm run build",
36
+ "prepublishOnly": "npm test",
37
+ "release": "np",
38
+ "smoke": "./scripts/smoke-envrc.sh",
39
+ "start": "tsx src/index.ts",
40
+ "test": "vitest run",
41
+ "test:watch": "vitest",
42
+ "typecheck": "tsc --noEmit"
43
+ },
44
+ "dependencies": {
45
+ "@clack/prompts": "^0.11.0",
46
+ "@criblinc/docker-names": "^1.2.2",
47
+ "citty": "^0.2.0",
48
+ "picocolors": "^1.1.1",
49
+ "update-notifier": "^7.3.1",
50
+ "zod": "^4.3.5"
51
+ },
52
+ "devDependencies": {
53
+ "@eslint/js": "^9.39.2",
54
+ "@tsconfig/node18": "^18.2.4",
55
+ "@tsconfig/strictest": "^2.0.8",
56
+ "@types/node": "^25.0.8",
57
+ "@types/update-notifier": "^6.0.8",
58
+ "eslint": "^9.39.2",
59
+ "eslint-config-prettier": "^10.1.8",
60
+ "execa": "^9.6.1",
61
+ "prettier": "^3.8.0",
62
+ "tsup": "^8.3.0",
63
+ "tsx": "^4.21.0",
64
+ "typescript": "^5.9.3",
65
+ "typescript-eslint": "^8.53.1",
66
+ "vitest": "^4.0.17"
67
+ },
68
+ "engines": {
69
+ "node": ">=18"
70
+ }
71
+ }