-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.55 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.55 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
{
"name": "@git-stunts/git-cas",
"version": "5.2.4",
"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",
"bin/",
"src/",
"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",
"test:integration:node": "docker compose run --build --rm test-node npx vitest run test/integration",
"test:integration:bun": "docker compose run --build --rm test-bun bunx vitest run test/integration",
"test:integration:deno": "docker compose run --build --rm test-deno deno run -A npm:vitest run test/integration",
"test:platforms": "bats --jobs 3 test/platform/runtimes.bats",
"benchmark": "vitest bench test/benchmark",
"benchmark:local": "vitest bench test/benchmark",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@flyingrobots/bijou": "^0.2.0",
"@flyingrobots/bijou-node": "^0.2.0",
"@flyingrobots/bijou-tui": "^0.2.0",
"@git-stunts/alfred": "^0.10.0",
"@git-stunts/plumbing": "^2.8.0",
"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",
"jsr": "^0.14.2",
"prettier": "^3.4.2",
"vitest": "^2.1.8"
}
}