-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.63 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.63 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "agentprofiles-cli",
"version": "0.3.0",
"description": "Manage configuration profiles for LLM agent tools via direnv",
"keywords": [
"cli",
"direnv",
"llm",
"agent",
"configuration",
"profiles"
],
"repository": {
"type": "git",
"url": "git@github.com:lunelson/agentprofiles-cli.git"
},
"license": "MIT",
"author": {
"name": "Lu Nelson"
},
"type": "module",
"bin": {
"agentprofiles": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"prepack": "RELEASE=true npm run build",
"prepublishOnly": "npm test",
"release": "np",
"smoke": "./scripts/smoke-envrc.sh",
"start": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@criblinc/docker-names": "^1.2.2",
"citty": "^0.2.0",
"picocolors": "^1.1.1",
"update-notifier": "^7.3.1",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^25.0.8",
"@types/update-notifier": "^6.0.8",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"execa": "^9.6.1",
"prettier": "^3.8.0",
"tsup": "^8.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=18"
}
}