-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.81 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@formigio/nexo",
"version": "1.4.0",
"description": "Specification graph system — make your entire app architecture queryable",
"license": "MIT",
"author": "Never Behind Group, LLC",
"repository": {
"type": "git",
"url": "git+https://github.com/formigio/nexo.git"
},
"homepage": "https://github.com/formigio/nexo",
"bugs": {
"url": "https://github.com/formigio/nexo/issues"
},
"keywords": [
"specification-graph",
"architecture",
"surrealdb",
"mcp",
"developer-tools"
],
"type": "module",
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"bin": {
"nexo": "dist/cli/index.js",
"nexo-mcp": "dist/mcp-server/index.js"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf dist && tsc && cp -r src/schema-sql dist/schema-sql && chmod +x dist/cli/index.js dist/mcp-server/index.js",
"dev": "tsc --watch",
"up": "npm run docker:up",
"down": "npm run docker:down",
"docker:up": "npm run build && npm run web:build && docker compose up -d",
"docker:down": "docker compose down",
"docker:db:start": "docker compose up -d surrealdb",
"docker:restart:api": "docker compose restart api",
"docker:logs": "docker compose logs -f",
"docker:logs:api": "docker compose logs -f api",
"warden:up": "npm run build && npm run web:build && warden env up",
"warden:down": "warden env down",
"warden:db:start": "warden env up -- surrealdb",
"warden:restart:api": "warden env restart -- api",
"warden:logs": "warden env logs -- -f",
"warden:logs:api": "warden env logs -- -f api",
"seed:example": "npm run build && node dist/seed/example.js",
"seed:nexo": "npm run build && node dist/seed/nexo.js",
"web:install": "cd web-console && npm install",
"web:dev": "cd web-console && npm run dev",
"web:build": "cd web-console && npm run build",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:e2e": "npm run build && vitest run --project e2e",
"test:watch": "vitest --project unit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@types/js-yaml": "^4.0.9",
"aws-jwt-verify": "^5.1.1",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"js-yaml": "^4.1.1",
"surrealdb": "^2.0.0-beta.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@aws-sdk/client-auto-scaling": "^3.1001.0",
"@aws-sdk/client-cloudwatch": "^3.1001.0",
"@aws-sdk/client-ec2": "^3.1001.0",
"@aws-sdk/client-ssm": "^3.1002.0",
"@types/aws-lambda": "^8.10.161",
"@types/node": "^22.13.4",
"esbuild": "^0.27.3",
"typescript": "^5.7.3",
"vitest": "^4.1.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
}
}