forked from Perihelion-Protocol/Perihelion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 703 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 703 Bytes
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
{
"name": "perihelion",
"version": "0.0.1",
"private": true,
"description": "Intent-based cross-chain bridge protocol connecting Stellar to EVM networks",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/perihelion-protocol/perihelion.git"
},
"workspaces": [
"sdk",
"relayer",
"solver",
"mempool"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"typescript": "^5.4.0"
}
}