docs-cache 0.5.1 → 0.5.2
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/dist/esm/cache/targets.mjs +2 -1
- package/package.json +135 -138
|
@@ -46,7 +46,8 @@ export const applyTargetDir = async (params) => {
|
|
|
46
46
|
}
|
|
47
47
|
const type = process.platform === "win32" ? "junction" : "dir";
|
|
48
48
|
try {
|
|
49
|
-
|
|
49
|
+
const linkTarget = process.platform === "win32" ? sourceDir : path.relative(parentDir, sourceDir);
|
|
50
|
+
await deps.symlink(linkTarget, params.targetDir, type);
|
|
50
51
|
} catch (error) {
|
|
51
52
|
const code = getErrnoCode(error);
|
|
52
53
|
const fallbackCodes = /* @__PURE__ */ new Set(["EPERM", "EACCES", "ENOTSUP", "EINVAL"]);
|
package/package.json
CHANGED
|
@@ -1,139 +1,136 @@
|
|
|
1
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
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
]
|
|
138
|
-
}
|
|
139
|
-
}
|
|
2
|
+
"name": "docs-cache",
|
|
3
|
+
"private": false,
|
|
4
|
+
"type": "module",
|
|
5
|
+
"version": "0.5.2",
|
|
6
|
+
"description": "CLI for deterministic local caching of external documentation for agents and tools",
|
|
7
|
+
"author": "Frederik Bosch",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"homepage": "https://github.com/fbosch/docs-cache#readme",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/fbosch/docs-cache.git"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/fbosch/docs-cache/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"docs",
|
|
19
|
+
"documentation",
|
|
20
|
+
"cache",
|
|
21
|
+
"agent",
|
|
22
|
+
"ai",
|
|
23
|
+
"git",
|
|
24
|
+
"cli"
|
|
25
|
+
],
|
|
26
|
+
"sideEffects": false,
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18"
|
|
29
|
+
},
|
|
30
|
+
"bin": {
|
|
31
|
+
"docs-cache": "./bin/docs-cache.mjs"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"bin",
|
|
35
|
+
"dist/cli.mjs",
|
|
36
|
+
"dist/esm/**/*.mjs",
|
|
37
|
+
"dist/esm/**/*.d.ts",
|
|
38
|
+
"dist/lock.mjs",
|
|
39
|
+
"dist/shared/*.mjs",
|
|
40
|
+
"README.md",
|
|
41
|
+
"LICENSE"
|
|
42
|
+
],
|
|
43
|
+
"imports": {
|
|
44
|
+
"#cache/*": {
|
|
45
|
+
"types": "./dist/esm/cache/*.d.ts",
|
|
46
|
+
"default": "./dist/esm/cache/*.mjs"
|
|
47
|
+
},
|
|
48
|
+
"#cli/*": {
|
|
49
|
+
"types": "./dist/esm/cli/*.d.ts",
|
|
50
|
+
"default": "./dist/esm/cli/*.mjs"
|
|
51
|
+
},
|
|
52
|
+
"#commands/*": {
|
|
53
|
+
"types": "./dist/esm/commands/*.d.ts",
|
|
54
|
+
"default": "./dist/esm/commands/*.mjs"
|
|
55
|
+
},
|
|
56
|
+
"#core/*": {
|
|
57
|
+
"types": "./dist/esm/*.d.ts",
|
|
58
|
+
"default": "./dist/esm/*.mjs"
|
|
59
|
+
},
|
|
60
|
+
"#config": {
|
|
61
|
+
"types": "./dist/esm/config/index.d.ts",
|
|
62
|
+
"default": "./dist/esm/config/index.mjs"
|
|
63
|
+
},
|
|
64
|
+
"#config/*": {
|
|
65
|
+
"types": "./dist/esm/config/*.d.ts",
|
|
66
|
+
"default": "./dist/esm/config/*.mjs"
|
|
67
|
+
},
|
|
68
|
+
"#git/*": {
|
|
69
|
+
"types": "./dist/esm/git/*.d.ts",
|
|
70
|
+
"default": "./dist/esm/git/*.mjs"
|
|
71
|
+
},
|
|
72
|
+
"#types/*": {
|
|
73
|
+
"types": "./dist/esm/types/*.d.ts",
|
|
74
|
+
"default": "./dist/esm/types/*.mjs"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"dependencies": {
|
|
78
|
+
"@clack/prompts": "^1.0.0",
|
|
79
|
+
"cac": "^6.7.14",
|
|
80
|
+
"cli-truncate": "^4.0.0",
|
|
81
|
+
"execa": "^9.6.1",
|
|
82
|
+
"fast-glob": "^3.3.2",
|
|
83
|
+
"log-update": "^7.0.2",
|
|
84
|
+
"picocolors": "^1.1.1",
|
|
85
|
+
"picomatch": "^4.0.3",
|
|
86
|
+
"zod": "^4.3.6"
|
|
87
|
+
},
|
|
88
|
+
"devDependencies": {
|
|
89
|
+
"@biomejs/biome": "^2.3.14",
|
|
90
|
+
"@size-limit/file": "^12.0.0",
|
|
91
|
+
"@types/node": "^25.2.0",
|
|
92
|
+
"bumpp": "^10.3.2",
|
|
93
|
+
"c8": "^10.1.3",
|
|
94
|
+
"jiti": "^2.5.1",
|
|
95
|
+
"lint-staged": "^16.2.7",
|
|
96
|
+
"simple-git-hooks": "^2.13.1",
|
|
97
|
+
"size-limit": "^12.0.0",
|
|
98
|
+
"tinybench": "^6.0.0",
|
|
99
|
+
"ts-complex": "^1.0.0",
|
|
100
|
+
"typescript": "^5.9.3",
|
|
101
|
+
"unbuild": "^3.6.1"
|
|
102
|
+
},
|
|
103
|
+
"size-limit": [
|
|
104
|
+
{
|
|
105
|
+
"path": "dist/cli.mjs",
|
|
106
|
+
"limit": "10 kB"
|
|
107
|
+
}
|
|
108
|
+
],
|
|
109
|
+
"complexity": {
|
|
110
|
+
"maxCyclomatic": 20,
|
|
111
|
+
"minMaintainability": 60,
|
|
112
|
+
"top": 10
|
|
113
|
+
},
|
|
114
|
+
"simple-git-hooks": {
|
|
115
|
+
"pre-commit": "pnpm lint-staged && pnpm typecheck"
|
|
116
|
+
},
|
|
117
|
+
"lint-staged": {
|
|
118
|
+
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
|
|
119
|
+
"biome check --write --no-errors-on-unmatched"
|
|
120
|
+
]
|
|
121
|
+
},
|
|
122
|
+
"scripts": {
|
|
123
|
+
"build": "unbuild",
|
|
124
|
+
"dev": "unbuild --stub",
|
|
125
|
+
"lint": "biome check .",
|
|
126
|
+
"release": "pnpm run lint && pnpm run typecheck && bumpp && pnpm publish --access public",
|
|
127
|
+
"test": "pnpm build && node --test",
|
|
128
|
+
"test:coverage": "pnpm build && c8 --include dist --exclude bin --reporter=text node --test",
|
|
129
|
+
"bench": "pnpm build && node scripts/benchmarks/run.mjs",
|
|
130
|
+
"complexity": "node scripts/complexity/run.mjs",
|
|
131
|
+
"schema:build": "node scripts/generate-schema.mjs",
|
|
132
|
+
"size": "size-limit",
|
|
133
|
+
"test:watch": "node --test --watch",
|
|
134
|
+
"typecheck": "tsc --noEmit"
|
|
135
|
+
}
|
|
136
|
+
}
|