@adaptic/lumic-utils 1.0.6 → 1.0.9

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.
Files changed (1) hide show
  1. package/package.json +19 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptic/lumic-utils",
3
- "version": "1.0.6",
3
+ "version": "1.0.9",
4
4
  "description": "NPM repo set of utility functions usable across the entire organisation.",
5
5
  "always-build-npm": false,
6
6
  "type": "module",
@@ -22,8 +22,13 @@
22
22
  "build": "npm run clean && npm run build:js && npm run build:tools && npm run build:types",
23
23
  "build:js": "rollup -c",
24
24
  "build:tools": "node --loader ts-node/esm compile-tool-definitions.ts",
25
- "build:types": "mkdir -p dist/types && cp -r src/types/* dist/types/",
26
- "test": "npm run build && node dist/test.mjs"
25
+ "build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types",
26
+ "test": "vitest run",
27
+ "test:watch": "vitest",
28
+ "test:legacy": "npm run build && node dist/test.mjs",
29
+ "build:analyze": "ANALYZE_BUNDLE=true npm run build",
30
+ "lint": "eslint src/",
31
+ "lint:fix": "eslint src/ --fix"
27
32
  },
28
33
  "engines": {
29
34
  "node": ">=20.0.0"
@@ -31,7 +36,8 @@
31
36
  "author": "Lumic.ai",
32
37
  "license": "Ask yo mamma",
33
38
  "dependencies": {
34
- "@adaptic/utils": "^0.0.366",
39
+ "@adaptic/utils": "^0.1.1",
40
+ "@anthropic-ai/sdk": "^0.80.0",
35
41
  "@aws-sdk/client-lambda": "^3.840.0",
36
42
  "@aws-sdk/client-s3": "^3.842.0",
37
43
  "@googleapis/sheets": "^10.0.1",
@@ -42,16 +48,23 @@
42
48
  "google-auth-library": "^10.1.0",
43
49
  "marked": "^16.0.0",
44
50
  "openai": "^5.8.2",
45
- "pdfkit": "^0.17.1"
51
+ "pdfkit": "^0.17.1",
52
+ "zod": "^3.25.76"
46
53
  },
47
54
  "devDependencies": {
55
+ "@eslint/js": "^9.18.0",
48
56
  "@rollup/plugin-commonjs": "^28.0.6",
49
57
  "@rollup/plugin-json": "^6.1.0",
50
58
  "@rollup/plugin-node-resolve": "^16.0.1",
51
59
  "@rollup/plugin-typescript": "^12.1.4",
52
60
  "@types/pdfkit": "^0.14.0",
61
+ "@typescript-eslint/eslint-plugin": "^8.22.0",
62
+ "@typescript-eslint/parser": "^8.22.0",
63
+ "eslint": "^9.18.0",
53
64
  "rollup": "^4.44.2",
65
+ "rollup-plugin-visualizer": "^6.0.5",
54
66
  "ts-node": "^10.9.2",
55
- "typescript": "^5.8.3"
67
+ "typescript": "^5.8.3",
68
+ "vitest": "^3.0.4"
56
69
  }
57
70
  }