-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "7cordon",
"description": "AI-powered trust and safety layer for autonomous financial agents on Tether WDK",
"author": "shipooor",
"homepage": "https://7cordon.xyz",
"repository": {
"type": "git",
"url": "https://github.com/shipooor/7cordon.git"
},
"private": true,
"workspaces": [
"packages/shared",
"packages/sdk",
"packages/api",
"packages/wdk-module",
"packages/dashboard",
"packages/demo"
],
"scripts": {
"build": "npm run build --workspaces",
"dev:api": "npm run dev -w packages/api",
"dev:dashboard": "npm run dev -w packages/dashboard",
"dev:demo": "npm run dev -w packages/demo",
"mcp": "node --import tsx/esm packages/sdk/src/mcp/server.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "npm run typecheck --workspaces --if-present",
"clean": "rm -rf packages/*/dist"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^20",
"tsx": "^4.7",
"typescript": "^5.4",
"vitest": "^4.1.0"
}
}