nocaap 0.0.1 → 0.0.3

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/package.json CHANGED
@@ -1,17 +1,33 @@
1
1
  {
2
2
  "name": "nocaap",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Normalized Organizational Context-as-a-Package. Standardize your AI agent context.",
5
5
  "type": "module",
6
6
  "bin": {
7
- "nocaap": "./dist/index.js"
7
+ "nocaap": "dist/index.js"
8
8
  },
9
9
  "scripts": {
10
10
  "build": "tsup",
11
11
  "dev": "tsup --watch",
12
12
  "start": "node dist/index.js",
13
13
  "lint": "eslint src/",
14
- "typecheck": "tsc --noEmit"
14
+ "lint:fix": "eslint src/ --fix",
15
+ "typecheck": "tsc --noEmit",
16
+ "check": "npm run typecheck && npm run lint",
17
+ "test": "vitest run",
18
+ "test:watch": "vitest",
19
+ "test:coverage": "vitest run --coverage",
20
+ "test:unit": "vitest run tests/unit",
21
+ "test:integration": "vitest run tests/integration",
22
+ "test:e2e": "bash tests/run-tests.sh",
23
+ "test:quick": "npm run build && npm run typecheck && npm run test:unit",
24
+ "test:all": "npm run test:unit && npm run test:integration && npm run test:e2e && npm run test:eval",
25
+ "test:eval": "tsx tests/eval/run-eval.ts --fixtures",
26
+ "test:eval:local": "tsx tests/eval/run-eval.ts",
27
+ "test:eval:core": "tsx tests/eval/run-eval.ts --fixtures --core",
28
+ "test:eval:baseline": "tsx tests/eval/run-eval.ts --fixtures --record-baseline",
29
+ "test:eval:compare": "tsx tests/eval/run-eval.ts --fixtures --compare-baseline",
30
+ "test:query": "tsx test-debug.ts"
15
31
  },
16
32
  "keywords": [
17
33
  "ai",
@@ -36,6 +52,9 @@
36
52
  ],
37
53
  "dependencies": {
38
54
  "@inquirer/prompts": "^3.3.0",
55
+ "@modelcontextprotocol/sdk": "^1.0.0",
56
+ "@orama/orama": "^3.0.0",
57
+ "@orama/plugin-data-persistence": "^3.0.0",
39
58
  "chalk": "^5.3.0",
40
59
  "commander": "^11.1.0",
41
60
  "fs-extra": "^11.2.0",
@@ -46,12 +65,25 @@
46
65
  "upath": "^2.0.1",
47
66
  "zod": "^3.22.4"
48
67
  },
68
+ "optionalDependencies": {
69
+ "@lancedb/lancedb": "^0.15.0",
70
+ "@xenova/transformers": "^2.17.0",
71
+ "apache-arrow": "18",
72
+ "ollama": "^0.5.0"
73
+ },
49
74
  "devDependencies": {
75
+ "@eslint/js": "^9.39.2",
50
76
  "@types/fs-extra": "^11.0.4",
51
77
  "@types/node": "^20.10.0",
78
+ "@typescript-eslint/eslint-plugin": "^8.53.0",
79
+ "@typescript-eslint/parser": "^8.53.0",
80
+ "@vitest/coverage-v8": "^4.0.17",
81
+ "eslint": "^9.39.2",
52
82
  "tsup": "^8.0.1",
53
83
  "tsx": "^4.21.0",
54
- "typescript": "^5.3.2"
84
+ "typescript": "^5.3.2",
85
+ "typescript-eslint": "^8.53.0",
86
+ "vitest": "^4.0.17"
55
87
  },
56
88
  "engines": {
57
89
  "node": ">=18"