git-escrows 1.0.0

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/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "git-escrows",
3
+ "version": "1.0.0",
4
+ "description": "Git-based escrow system for code challenges and bounties",
5
+ "type": "module",
6
+ "bin": {
7
+ "git-escrows": "./dist/git-escrows.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "engines": {
13
+ "node": ">=18"
14
+ },
15
+ "scripts": {
16
+ "test": "bun test ./tests --exclude alkahest-ts/**",
17
+ "build": "tsup",
18
+ "build:contracts": "forge build --root ./contract",
19
+ "build:binary": "bun build --compile --outfile bin/macos/git-escrows-docker src/cli/git-escrows.ts",
20
+ "build:binary:linux": "bun build --compile --target bun-linux-x64 --outfile bin/linux/git-escrows-docker src/cli/git-escrows.ts",
21
+ "build:binary:windows": "bun build --compile --target bun-windows-x64 --outfile bin/windows/git-escrows-docker.exe src/cli/git-escrows.ts",
22
+ "build:all": "bun run build:binary && bun run build:binary:linux && bun run build:binary:windows",
23
+ "prepublishOnly": "npm run build",
24
+ "start": "bun run index.ts",
25
+ "dev": "bun run --watch index.ts",
26
+ "cli": "bun run src/cli/git-escrows.ts",
27
+ "escrows": "bun run src/cli/git-escrows.ts",
28
+ "escrows list": "bun run src/cli/git-escrows.ts list",
29
+ "escrows submit": "bun run src/cli/git-escrows.ts submit",
30
+ "escrows fulfill": "bun run src/cli/git-escrows.ts fulfill",
31
+ "escrows server": "bun run src/cli/git-escrows.ts server",
32
+ "escrows collect": "bun run src/cli/git-escrows.ts collect",
33
+ "escrows register-key": "bun run src/cli/git-escrows.ts register-key",
34
+ "escrows check-key": "bun run src/cli/git-escrows.ts check-key",
35
+ "generate-ts": "bun run script/jsonToTsConverter.ts"
36
+ },
37
+ "devDependencies": {
38
+ "@types/bun": "latest",
39
+ "@types/node": "^20.19.11",
40
+ "@types/sshpk": "^1.17.4",
41
+ "@types/uuid": "^10.0.0",
42
+ "openpgp": "^6.2.2",
43
+ "tsup": "^8.5.0"
44
+ },
45
+ "peerDependencies": {
46
+ "typescript": "^5.9.2"
47
+ },
48
+ "dependencies": {
49
+ "@openpgp/web-stream-tools": "^0.1.3",
50
+ "@peculiar/x509": "^1.13.0",
51
+ "@types/openpgp": "^5.0.0",
52
+ "@viem/anvil": "^0.0.10",
53
+ "alkahest-ts": "^0.7.0",
54
+ "chalk": "^5.6.0",
55
+ "commander": "^12.1.0",
56
+ "simple-git": "^3.28.0",
57
+ "sshpk": "^1.18.0",
58
+ "uuid": "^10.0.0",
59
+ "viem": "^2.38.3"
60
+ }
61
+ }