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
48 lines (48 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.4 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
41
42
43
44
45
46
47
48
{
"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:ui": "vitest --ui",
"test:ts:coverage": "vitest run --coverage",
"test:rust": "cargo test --manifest-path contracts/escrow/Cargo.toml",
"test:rust:coverage": "cargo tarpaulin --manifest-path contracts/escrow/Cargo.toml --out Html --output-dir coverage/rust",
"test:e2e": "vitest run tests/e2e/**",
"test:all": "npm run test:rust && npm run test:ts",
"lint": "eslint backend/**/*.ts tests/**/*.ts",
"audit": "npm audit --audit-level=high",
"prepare": "husky install"
},
"lint-staged": {
"backend/**/*.ts": [
"eslint --fix"
],
"tests/**/*.ts": [
"eslint --fix"
]
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "3.1075.0",
"@stellar/stellar-sdk": "^13.0.0",
"axios": "^1.6.0",
"dotenv": "^16.0.0",
"pino": "^10.3.1",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"pino-pretty": "^13.1.3",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
}
}