-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.18 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
{
"name": "git-escrows",
"version": "1.0.2",
"description": "Git-based escrow system for code challenges and bounties",
"type": "module",
"workspaces": [
"intent-verification/packages/ts",
"intent-verification/examples/ts"
],
"bin": {
"git-escrows": "./dist/git-escrows.js"
},
"files": [
"dist",
"skills"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "bun test ./tests --exclude alkahest-ts/**",
"build": "tsup",
"build:contracts": "forge build --root ./contract",
"build:binary": "bun build --compile --outfile bin/macos/git-escrows-docker src/cli/git-escrows.ts",
"build:binary:linux": "bun build --compile --target bun-linux-x64 --outfile bin/linux/git-escrows-docker src/cli/git-escrows.ts",
"build:binary:windows": "bun build --compile --target bun-windows-x64 --outfile bin/windows/git-escrows-docker.exe src/cli/git-escrows.ts",
"build:all": "bun run build:binary && bun run build:binary:linux && bun run build:binary:windows",
"prepublishOnly": "npm run build",
"start": "bun run index.ts",
"dev": "bun run --watch index.ts",
"cli": "bun run src/cli/git-escrows.ts",
"escrows": "bun run src/cli/git-escrows.ts",
"escrows list": "bun run src/cli/git-escrows.ts list",
"escrows submit": "bun run src/cli/git-escrows.ts submit",
"escrows fulfill": "bun run src/cli/git-escrows.ts fulfill",
"escrows oracle": "bun run src/cli/git-escrows.ts oracle",
"escrows collect": "bun run src/cli/git-escrows.ts collect",
"escrows register-key": "bun run src/cli/git-escrows.ts register-key",
"escrows check-key": "bun run src/cli/git-escrows.ts check-key",
"generate-ts": "bun run script/jsonToTsConverter.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.19.11",
"@types/sshpk": "^1.17.4",
"@types/uuid": "^10.0.0",
"openpgp": "^6.2.2",
"tsup": "^8.5.0"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"@openpgp/web-stream-tools": "^0.1.3",
"@peculiar/x509": "^1.13.0",
"@types/openpgp": "^5.0.0",
"@viem/anvil": "^0.0.10",
"alkahest-ts": "1.0.0",
"chalk": "^5.6.0",
"commander": "^12.1.0",
"simple-git": "^3.28.0",
"sshpk": "^1.18.0",
"uuid": "^10.0.0",
"viem": "^2.38.3"
}
}