forked from arkhai-io/git-commit-trading
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.06 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
{
"name": "git-app",
"module": "index.ts",
"type": "module",
"private": true,
"bin": {
"git-escrows": "./src/cli/git-escrows.ts"
},
"scripts": {
"test": "bun test ./tests --exclude alkahest-ts/**",
"build:contracts": "forge build --root ./contract",
"build": "bun build:all",
"build:binary": "bun build --compile --outfile bin/macos/git-escrows src/cli/git-escrows.ts",
"build:binary:linux": "bun build --compile --target bun-linux-x64 --outfile bin/linux/git-escrows src/cli/git-escrows.ts",
"build:binary:windows": "bun build --compile --target bun-windows-x64 --outfile bin/windows/git-escrows.exe src/cli/git-escrows.ts",
"build:all": "bun run build:binary && bun run build:binary:linux && bun run build:binary:windows",
"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 server": "bun run src/cli/git-escrows.ts server",
"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": "git+https://github.com/principia-systems/alkahest-ts.git#mlegls-dev",
"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"
}
}