forked from ReineiraOS/settlement-protocol-experimental
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.53 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
{
"name": "@reineira-os/protocol",
"version": "0.1.0",
"private": true,
"description": "ReineiraOS — FHE-encrypted stablecoin infrastructure on Arbitrum",
"scripts": {
"compile": "pnpm -r --filter './packages/**' run compile",
"compile:shared": "pnpm --filter @reineira-os/shared run compile",
"compile:escrow": "pnpm --filter @reineira-os/escrow run compile",
"compile:recourse": "pnpm --filter @reineira-os/recourse run compile",
"test": "pnpm -r run test",
"test:escrow": "pnpm --filter @reineira-os/escrow run test",
"test:recourse": "pnpm --filter @reineira-os/recourse run test",
"test:sdk": "pnpm --filter @reineira-os/sdk run test",
"test:e2e": "bash e2e/run.sh",
"clean": "pnpm -r run clean",
"lint": "pnpm -r run lint",
"format": "prettier --write '**/*.{ts,js,json,sol,md}'",
"format:check": "prettier --check '**/*.{ts,js,json,sol,md}'"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"conventional-changelog-conventionalcommits": "^9.3.0",
"forge-std": "github:foundry-rs/forge-std",
"prettier": "^3.2.0",
"prettier-plugin-solidity": "^1.3.0",
"semantic-release": "^25.0.3",
"solhint": "^6.2.1"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=9.0.0"
},
"license": "SEE LICENSE IN LICENSE"
}