-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.62 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.62 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
{
"name": "@git-stunts/plumbing",
"version": "2.8.0",
"description": "Robust async, stream-first Git plumbing for Node, Bun, and Deno.",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./ShellRunner": "./ShellRunner.js",
"./sha": "./sha.js",
"./ref": "./ref.js",
"./mode": "./mode.js",
"./signature": "./signature.js",
"./errors": "./errors.js"
},
"engines": {
"node": ">=20.0.0",
"bun": ">=1.3.5",
"deno": ">=2.0.0"
},
"scripts": {
"test": "./scripts/run-multi-runtime-tests.sh",
"test:local": "vitest run --globals",
"prepare": "test -d .git || true",
"lint": "eslint .",
"format": "prettier --write .",
"hooks:install": "git config core.hooksPath scripts"
},
"author": "James Ross <james@flyingrobots.dev>",
"license": "Apache-2.0",
"dependencies": {
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"vitest": "^3.0.0",
"@git-stunts/docker-guard": "^0.1.0"
},
"files": [
"src",
"index.js",
"ShellRunner.js",
"sha.js",
"ref.js",
"mode.js",
"signature.js",
"errors.js",
"README.md",
"LICENSE",
"NOTICE",
"SECURITY.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/git-stunts/plumbing.git"
},
"homepage": "https://github.com/git-stunts/plumbing#readme",
"bugs": {
"url": "https://github.com/git-stunts/plumbing/issues"
},
"keywords": [
"git",
"plumbing",
"content-addressable",
"dag",
"merkle",
"node",
"deno",
"bun"
]
}