-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.99 KB
/
package.json
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": "apocryph",
"version": "0.1.0",
"description": "Apocryph / Trusted Pods is a decentralized compute marketplace where developers can run container pods securely and confidentially through small and medium cloud providers.",
"main": "index.js",
"directories": {
"test": "test"
},
"packageManager": "[email protected]",
"scripts": {
"lint": "eslint pkg/**/*.\\{ts,js\\} test/**/*.\\{ts,js\\} --ignore-pattern **/*.config.ts",
"fmt": "eslint --fix pkg/**/*.\\{ts,js\\} test/**/*.\\{ts,js\\} --ignore-pattern **/*.config.ts",
"build-contracts": "forge build --root contracts",
"build-tpodserver": "docker build -t comradecoop/apocryph/server:latest . --target server",
"build-p2p-helper": "docker build -t comradecoop/apocryph/p2p-helper:latest . --target p2p-helper",
"go-build": "go generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comrade-coop/apocryph.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/comrade-coop/apocryph/issues"
},
"homepage": "https://github.com/comrade-coop/apocryph#readme",
"devDependencies": {
"@rollup/plugin-run": "^3.0.2",
"@rollup/plugin-typescript": "^11.1.5",
"@types/private-ip": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"esbuild": "^0.16.17",
"eslint": "^8.55.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"rollup": "^4.6.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@bufbuild/protobuf": "^1.4.2",
"@bufbuild/protoc-gen-es": "^1.4.2",
"@connectrpc/connect": "^1.1.3",
"@connectrpc/protoc-gen-connect-es": "^1.1.3",
"@libp2p/interface": "^1.4.0",
"@multiformats/multiaddr": "^12.2.3",
"helia": "^4.2.1",
"private-ip": "^3.0.2"
},
"workspaces": ["test/e2e/webui", "pkg/ipfs-ts", "pkg/proto-ts", "pkg/abi-ts"]
}