@skydiveai/git-cache 0.1.0-beta.1480
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/LICENSE +21 -0
- package/dist/cli.d.mts +1 -0
- package/dist/cli.mjs +43 -0
- package/dist/index.d.mts +179 -0
- package/dist/index.mjs +2 -0
- package/dist/server-B5u5DETT.mjs +1829 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@skydiveai/git-cache",
|
|
3
|
+
"version": "0.1.0-beta.1480",
|
|
4
|
+
"description": "Sandbox-local Git smart-HTTP clone/fetch cache: a loopback daemon that transparently mirrors HTTPS git reads so repeated clone/fetch/ls-remote skip the origin round-trip. Runs inside an agent sandbox; pushes stay direct.",
|
|
5
|
+
"homepage": "https://skydive.com",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Create, Inc.",
|
|
8
|
+
"bin": {
|
|
9
|
+
"git-cache-daemon": "./dist/cli.mjs"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"type": "module",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.mts",
|
|
19
|
+
"default": "./dist/index.mjs"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"bin": {
|
|
24
|
+
"git-cache-daemon": "./dist/cli.mjs"
|
|
25
|
+
},
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/index.d.mts",
|
|
29
|
+
"default": "./dist/index.mjs"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"access": "public",
|
|
33
|
+
"registry": "https://registry.npmjs.org"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "tsdown",
|
|
37
|
+
"typecheck": "tsgo --noEmit",
|
|
38
|
+
"lint:shell": "shellcheck --shell=bash test/e2e.sh test/local-e2e.sh test/perf-check.sh test/bench.sh",
|
|
39
|
+
"test:git-cache-e2e": "yarn build && bash test/e2e.sh",
|
|
40
|
+
"bench": "yarn build && bash test/bench.sh",
|
|
41
|
+
"test:unit": "yarn build && vitest run --passWithNoTests && yarn lint:shell && bash test/local-e2e.sh && bash test/perf-check.sh",
|
|
42
|
+
"test:ci": "yarn build && vitest run --coverage --coverage.reporter=lcovonly --reporter=default --reporter=github-actions --minWorkers=1 --maxWorkers=2 --passWithNoTests && yarn lint:shell && bash test/local-e2e.sh && bash test/perf-check.sh"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@types/node": "^24.0.0",
|
|
46
|
+
"@typescript/native-preview": "^7.0.0-dev.20260113.1",
|
|
47
|
+
"@vitest/coverage-v8": "^2.1.8",
|
|
48
|
+
"shellcheck": "^4.1.0",
|
|
49
|
+
"tsdown": "^0.21.10",
|
|
50
|
+
"typescript": "^5.9.3",
|
|
51
|
+
"vitest": "^2.1.8"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": "24.x"
|
|
55
|
+
}
|
|
56
|
+
}
|