@getnella/latest 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +286 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +28822 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +80 -0
- package/dist/index.js +26616 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp/index.d.ts +31 -0
- package/dist/mcp/index.js +27506 -0
- package/dist/mcp/index.js.map +1 -0
- package/package.json +93 -0
package/package.json
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@getnella/latest",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Nella MCP Server — reliability layer for AI coding agents. Validates constraints, detects risks, and tracks context via the Model Context Protocol.",
|
|
5
|
+
"type": "commonjs",
|
|
6
|
+
"bin": {
|
|
7
|
+
"nella": "dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "dist/index.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"require": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./mcp": {
|
|
17
|
+
"types": "./dist/mcp/index.d.ts",
|
|
18
|
+
"require": "./dist/mcp/index.js"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsup",
|
|
26
|
+
"build:tsc": "tsc",
|
|
27
|
+
"test": "c8 --reporter=text --reporter=lcov --report-dir=coverage tsx --test src/**/__tests__/*.test.ts",
|
|
28
|
+
"test:ci": "c8 --reporter=lcov --report-dir=coverage tsx --test src/**/__tests__/*.test.ts",
|
|
29
|
+
"dev": "tsup --watch",
|
|
30
|
+
"start:mcp": "node dist/mcp/server.js",
|
|
31
|
+
"prepublishOnly": "npm run build"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"coding-agent",
|
|
35
|
+
"ai",
|
|
36
|
+
"cli",
|
|
37
|
+
"mcp",
|
|
38
|
+
"model-context-protocol",
|
|
39
|
+
"reliability",
|
|
40
|
+
"nella"
|
|
41
|
+
],
|
|
42
|
+
"author": "Nella Labs",
|
|
43
|
+
"license": "Apache-2.0",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "https://github.com/nella-labs/nella.git",
|
|
47
|
+
"directory": "packages/nella"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=18"
|
|
51
|
+
},
|
|
52
|
+
"publishConfig": {
|
|
53
|
+
"access": "public"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
57
|
+
"@typescript-eslint/typescript-estree": "^7.0.0",
|
|
58
|
+
"chalk": "^4.1.2",
|
|
59
|
+
"cli-table3": "^0.6.5",
|
|
60
|
+
"dotenv": "^16.6.1",
|
|
61
|
+
"figures": "^3.2.0",
|
|
62
|
+
"js-yaml": "^4.1.0",
|
|
63
|
+
"minimatch": "^9.0.0",
|
|
64
|
+
"natural": "^6.10.0"
|
|
65
|
+
},
|
|
66
|
+
"optionalDependencies": {
|
|
67
|
+
"@google-cloud/storage": "^7.7.0",
|
|
68
|
+
"@msgpack/msgpack": "^3.0.0",
|
|
69
|
+
"@opentelemetry/api": "^1.9.0",
|
|
70
|
+
"@opentelemetry/exporter-trace-otlp-http": "^0.212.0",
|
|
71
|
+
"@opentelemetry/resources": "^1.30.0",
|
|
72
|
+
"@opentelemetry/sdk-node": "^0.212.0",
|
|
73
|
+
"@opentelemetry/sdk-trace-base": "^1.30.0",
|
|
74
|
+
"@supabase/supabase-js": "^2.39.0",
|
|
75
|
+
"better-sqlite3": "^11.0.0",
|
|
76
|
+
"express": "^4.18.0",
|
|
77
|
+
"hnswlib-node": "^3.0.0",
|
|
78
|
+
"ioredis": "^5.9.3",
|
|
79
|
+
"onnxruntime-node": "^1.17.0",
|
|
80
|
+
"pg": "^8.11.0",
|
|
81
|
+
"usearch": "^2.12.0",
|
|
82
|
+
"ws": "^8.16.0"
|
|
83
|
+
},
|
|
84
|
+
"devDependencies": {
|
|
85
|
+
"@types/figures": "^3.0.3",
|
|
86
|
+
"@types/js-yaml": "^4.0.9",
|
|
87
|
+
"@types/node": "^20.0.0",
|
|
88
|
+
"@types/ws": "^8.5.0",
|
|
89
|
+
"@usenella/core": "workspace:*",
|
|
90
|
+
"tsup": "^8.5.1",
|
|
91
|
+
"typescript": "^5.3.0"
|
|
92
|
+
}
|
|
93
|
+
}
|