-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.1 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.1 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": "stellar_client",
"version": "0.1.0",
"private": true,
"description": "Fundable Protocol - Stellar blockchain client and smart contracts",
"scripts": {
"dev": "pnpm --filter @fundable/web dev",
"build": "pnpm --filter @fundable/web build",
"build:contracts": "cd contracts && cargo build --release",
"generate:sdk": "pnpm --filter @fundable/sdk generate",
"test:contracts": "cd contracts && cargo test",
"test:sdk": "pnpm --filter @fundable/sdk test",
"test:sdk:coverage": "pnpm --filter @fundable/sdk test:coverage",
"test:sdk:integration": "pnpm --filter @fundable/sdk test:integration",
"lint": "pnpm --filter @fundable/web lint",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "pnpm --filter @fundable/sdk build && changeset publish"
},
"keywords": [
"stellar",
"soroban",
"fundable",
"payment-streaming",
"defi"
],
"repository": {
"type": "git",
"url": "https://github.com/Fundable-Protocol/stellar_client.git"
},
"devDependencies": {
"@changesets/cli": "^2.31.0"
}
}