-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 5.3 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 5.3 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@enclave/main",
"description": "Enclave is an open-source protocol for Encrypted Execution Environments (E3).",
"version": "0.1.15",
"private": true,
"license": "LGPL-3.0-only",
"author": {
"name": "gnosisguild",
"url": "https://github.com/gnosisguild"
},
"repository": {
"type": "git",
"url": "https://github.com/gnosisguild/enclave"
},
"scripts": {
"bump:versions": "tsx scripts/bump-versions.ts",
"build:circuits": "tsx scripts/build-circuits.ts",
"generate:verifiers": "tsx scripts/generate-verifiers.ts --circuits pk_aggregation,decrypted_shares_aggregation,fold",
"store:circuits": "tsx scripts/circuit-artifacts.ts",
"clean": "tsx scripts/clean.ts",
"compile": "pnpm build:ts && pnpm rust:build",
"lint": "eslint . && pnpm evm:lint && pnpm rust:lint && pnpm noir:lint",
"format": "prettier --write \"**/*.{js,jsx,mjs,cjs,json,md,mdx,ts,tsx,yml,yaml,css,sol}\"",
"format:check": "prettier --check \"**/*.{js,jsx,mjs,cjs,json,md,mdx,ts,tsx,yml,yaml,css,sol}\"",
"check:license": "./scripts/check-license-headers.sh",
"check:size": "./scripts/check-size.sh",
"check:pnpm": "./scripts/check-pnpm.sh",
"test": "pnpm evm:test && pnpm rust:test && pnpm sdk:test && pnpm noir:test",
"test:integration": "cd ./tests/integration && ./test.sh",
"coverage": "pnpm evm:coverage",
"prepare": "husky",
"enclave": "cd crates && ./scripts/launch.sh",
"rust:lint": "cargo fmt -- --check",
"ciphernode:add": "cd packages/enclave-contracts && pnpm ciphernode:admin-add",
"ciphernode:remove": "cd packages/enclave-contracts && pnpm ciphernode:remove",
"rust:test": "cd crates && ./scripts/test.sh",
"noir:test": "./scripts/test-circuits.sh",
"noir:lint": "./scripts/lint-circuits.sh",
"rust:build": "cargo build --locked --release",
"prerust:build": "pnpm evm:build && pnpm fixtures:build",
"committee:new": "cd packages/enclave-contracts && pnpm committee:new",
"committee:get-public-key": "cd packages/enclave-contracts && pnpm committee:get-public-key",
"committee:get-active-aggregator": "cd packages/enclave-contracts && pnpm committee:get-active-aggregator",
"committee:publish": "cd packages/enclave-contracts && pnpm hardhat committee:publish",
"e3:activate": "cd packages/enclave-contracts && pnpm e3:activate",
"e3-program:publishInput": "cd packages/enclave-contracts && pnpm hardhat e3-program:publishInput",
"e3:publishCiphertext": "cd packages/enclave-contracts && pnpm hardhat e3:publishCiphertext",
"e3:get-plaintext": "cd packages/enclave-contracts && pnpm e3:get-plaintext",
"evm:install": "cd packages/enclave-contracts && pnpm install",
"evm:node": "cd packages/enclave-contracts && pnpm hardhat node",
"evm:build": "cd packages/enclave-contracts && pnpm compile",
"evm:lint": "cd packages/enclave-contracts && pnpm lint",
"evm:test": "cd packages/enclave-contracts && pnpm test",
"evm:deploy": "cd packages/enclave-contracts && pnpm run deploy:mocks",
"evm:clean": "cd packages/enclave-contracts && pnpm clean:deployments",
"evm:coverage": "cd packages/enclave-contracts && pnpm coverage",
"evm:release": "cd packages/enclave-contracts && pnpm release",
"mcp:build": "cd packages/enclave-mcp && pnpm build",
"mcp:release": "cd packages/enclave-mcp && pnpm release",
"react:build": "cd packages/enclave-react && pnpm build",
"sdk:build": "cd packages/enclave-sdk && pnpm build",
"sdk:test": "cd packages/enclave-sdk && pnpm test",
"sdk:release": "cd packages/enclave-sdk && pnpm release",
"wasm:release": "cd crates/wasm && pnpm release",
"config:release": "cd packages/enclave-config && pnpm release",
"react:release": "cd packages/enclave-react && pnpm release",
"npm:release": "pnpm build && pnpm config:release && pnpm evm:release && pnpm wasm:release && pnpm sdk:release && pnpm react:release && pnpm mcp:release",
"support:build": "cd crates/support && ./scripts/build.sh",
"build": "pnpm compile",
"fixtures:build": "cd crates/evm-helpers && ./scripts/build_fixtures.sh && cd ../indexer && ./scripts/build_fixtures.sh",
"wasm:build": "cd ./crates/wasm && pnpm build",
"build:ts": "pnpm evm:build && pnpm sdk:build && pnpm react:build && pnpm mcp:build",
"template:build": "cd templates/default && pnpm compile",
"prepare-publish": "tsx .github/scripts/prepareForNpmPublishing.ts"
},
"packageManager": "pnpm@10.7.1+sha512.2d92c86b7928dc8284f53494fb4201f983da65f0fb4f0d40baafa5cf628fa31dae3e5968f12466f17df7e97310e30f343a648baea1b9b350685dafafffdf5808",
"devDependencies": {
"@enclave-e3/config": "workspace:*",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "22.7.5",
"auto-changelog": "^2.5.0",
"eslint": "^9.39.1",
"glob": "^11.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-solidity": "^1.2.0",
"prettier-plugin-tailwindcss": "^0.6.9",
"prompts": "^2.4.2",
"tsx": "^4.20.3",
"typescript": "5.8.3"
},
"pnpm": {
"overrides": {
"@types/node": "22.7.5",
"tsup": "8.5.0",
"typescript": "5.8.3",
"undici-types": "6.19.8",
"viem": "2.38.6"
}
},
"lint-staged": {
"*.{js,jsx,mjs,cjs,json,md,mdx,ts,tsx,yml,yaml,css,sol}": [
"prettier --check"
]
}
}