-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 3.98 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 3.98 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
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
{
"name": "@git-stunts/git-cas",
"version": "6.5.10",
"description": "Content-addressed storage backed by Git's object database, with optional encryption and pluggable codecs",
"type": "module",
"main": "index.js",
"bin": {
"git-cas": "bin/git-cas.js"
},
"exports": {
".": "./index.js",
"./service": "./src/domain/services/CasService.js",
"./schema": "./src/domain/schemas/ManifestSchema.js"
},
"files": [
"index.js",
"index.d.ts",
"build-info.json",
"bin/",
"src/",
"scripts/migrate-encryption.js",
"README.md",
"CODE_OF_CONDUCT.md",
"GUIDE.md",
"ADVANCED_GUIDE.md",
"ARCHITECTURE.md",
"SECURITY.md",
"SUPPORT.md",
"UPGRADING.md",
"docs/API.md",
"docs/ENCRYPTION_MODES.md",
"docs/EXTENDING.md",
"docs/STORE_RESTORE_PIPELINE.md",
"docs/releases/v6.0.0.md",
"docs/releases/v6.1.0.md",
"docs/releases/v6.2.0.md",
"docs/releases/v6.3.0.md",
"docs/releases/v6.4.0.md",
"docs/releases/v6.5.0.md",
"docs/releases/v6.5.1.md",
"docs/releases/v6.5.2.md",
"docs/releases/v6.5.3.md",
"docs/releases/v6.5.4.md",
"docs/releases/v6.5.5.md",
"docs/releases/v6.5.6.md",
"docs/releases/v6.5.7.md",
"docs/releases/v6.5.8.md",
"docs/releases/v6.5.9.md",
"docs/releases/v6.5.10.md",
"docs/THREAT_MODEL.md",
"docs/VAULT_INTERNALS.md",
"docs/WALKTHROUGH.md",
"docs/demo.gif",
"examples/README.md",
"test/CONVENTIONS.md",
"test/cycles/README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/git-stunts/git-cas.git"
},
"keywords": [
"git",
"cas",
"content-addressable",
"storage",
"deduplication",
"encryption",
"blob",
"bun",
"deno"
],
"author": "James Ross <james@flyingrobots.dev>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/git-stunts/git-cas/issues"
},
"homepage": "https://github.com/git-stunts/git-cas#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"test": "vitest run test/unit",
"test:local": "vitest run test/unit",
"test:node": "docker compose run --build --rm test-node",
"test:bun": "docker compose run --build --rm test-bun",
"test:deno": "docker compose run --build --rm test-deno",
"test:integration": "vitest run test/integration --no-file-parallelism",
"test:integration:node": "docker compose run --build --rm test-node npx vitest run test/integration --no-file-parallelism",
"test:integration:bun": "docker compose run --build --rm test-bun bunx vitest run test/integration --no-file-parallelism",
"test:integration:deno": "docker compose run --build --rm test-deno deno run -A npm:vitest run test/integration --no-file-parallelism",
"test:platforms": "bats --jobs 3 test/platform/runtimes.bats",
"benchmark": "vitest bench test/benchmark",
"benchmark:local": "vitest bench test/benchmark",
"release:verify": "node scripts/release/verify.js",
"stamp": "node scripts/stamp-build.js",
"prepack": "node scripts/stamp-build.js --quiet",
"prepublishOnly": "node scripts/stamp-build.js",
"upgrade": "node scripts/migrate-encryption.js",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@flyingrobots/bijou": "^7.2.0",
"@flyingrobots/bijou-node": "^7.2.0",
"@flyingrobots/bijou-tui": "^7.2.0",
"@flyingrobots/bijou-tui-app": "^7.2.0",
"@git-stunts/alfred": "^0.10.0",
"@git-stunts/plumbing": "^3.3.0",
"@git-stunts/vault": "^1.0.1",
"cbor-x": "^1.6.0",
"commander": "14.0.3",
"zod": "^3.24.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"cbor-extract",
"esbuild"
]
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^25.3.2",
"eslint": "^9.17.0",
"fast-check": "^4.6.0",
"jsr": "^0.14.2",
"prettier": "^3.4.2",
"vitest": "^2.1.8"
}
}