-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.12 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.12 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
{
"name": "@spader/dotllm",
"version": "1.2.3",
"description": "A simple CLI to clone, manage, and link repositories for LLM reference",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/tspader/dotllm"
},
"publishConfig": {
"access": "public"
},
"bin": {
"dotllm": "src/cli/index.ts"
},
"scripts": {
"clean": "bun tools/clean.ts",
"build": "bun tools/build.ts",
"check": "bunx tsc --noEmit",
"prepublishOnly": "bun run check"
},
"files": [
"src/**/*.ts",
"README.md"
],
"exports": {
"./cli": "./src/cli/index.ts",
"./cli/*": "./src/cli/*.ts",
"./core": "./src/core/index.ts",
"./core/*": "./src/core/*.ts"
},
"imports": {
"#tools/*": "./tools/*.ts"
},
"engines": {
"bun": ">=1.1.0"
},
"keywords": [
"cli",
"bun",
"dotfiles",
"symlink",
"llm"
],
"license": "UNLICENSED",
"dependencies": {
"@clack/prompts": "^1.0.1",
"picocolors": "^1.1.1",
"yargs": "^17.7.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest",
"@types/yargs": "^17.0.35"
}
}