-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.05 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
{
"name": "azable",
"version": "0.1.0",
"private": true,
"description": "Azable - Stellar blockchain client and smart contracts",
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"dev": "pnpm --filter @azable/web dev",
"build": "pnpm --filter @azable/web build",
"build:contracts": "cd contracts && cargo build --release",
"generate:sdk": "pnpm --filter @azable/sdk generate",
"test:contracts": "cd contracts && cargo test",
"dev:backend": "cd services/backend && cargo run",
"build:backend": "cd services/backend && cargo build --release",
"test:backend": "cd services/backend && cargo test",
"test:sdk": "pnpm --filter @azable/sdk test",
"test:sdk:coverage": "pnpm --filter @azable/sdk test:coverage",
"test:sdk:integration": "pnpm --filter @azable/sdk test:integration",
"lint": "pnpm --filter @azable/web lint"
},
"keywords": [
"stellar",
"soroban",
"azable",
"payment-streaming",
"defi"
],
"repository": {
"type": "git",
"url": "https://github.com/skiboso/Azable.git"
}
}