forked from Nodal-stellar/Nodal-AI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 876 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 876 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
30
{
"name": "stellar-agent-kit",
"version": "1.0.0",
"description": "Modular, secure Stellar Agent Kit with PayFi / x402 support",
"private": true,
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:ts": "vitest run",
"test:ts:watch": "vitest",
"test:ts:coverage": "vitest run --coverage",
"test:rust": "cargo test --manifest-path contracts/escrow/Cargo.toml",
"test:all": "npm run test:rust && npm run test:ts",
"lint": "eslint 'backend/**/*.ts' 'tests/**/*.ts'"
},
"dependencies": {
"@stellar/stellar-sdk": "^13.0.0",
"axios": "^1.6.0",
"dotenv": "^16.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.4.0",
"vitest": "^1.6.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0"
}
}