la-machina-engine 0.3.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/package.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "name": "la-machina-engine",
3
+ "version": "0.3.0",
4
+ "description": "Headless, multi-provider LLM agent engine for workflow automation. Pause/resume, MCP, skills, R2/Workers compatible.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/zahidhasanaunto/la-machina-engine.git"
8
+ },
9
+ "homepage": "https://github.com/zahidhasanaunto/la-machina-engine#readme",
10
+ "bugs": "https://github.com/zahidhasanaunto/la-machina-engine/issues",
11
+ "author": "Zahid Hasan",
12
+ "type": "module",
13
+ "main": "./dist/index.cjs",
14
+ "module": "./dist/index.js",
15
+ "types": "./dist/index.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "import": {
19
+ "types": "./dist/index.d.ts",
20
+ "default": "./dist/index.js"
21
+ },
22
+ "require": {
23
+ "types": "./dist/index.d.cts",
24
+ "default": "./dist/index.cjs"
25
+ }
26
+ }
27
+ },
28
+ "files": [
29
+ "dist",
30
+ "README.md",
31
+ "LICENSE"
32
+ ],
33
+ "scripts": {
34
+ "build": "tsup",
35
+ "prepublishOnly": "npm run build && npm run typecheck",
36
+ "test": "vitest run",
37
+ "test:watch": "vitest",
38
+ "test:coverage": "vitest run --coverage",
39
+ "lint": "eslint . --ext .ts",
40
+ "lint:fix": "eslint . --ext .ts --fix",
41
+ "format": "prettier --write \"{src,test,scripts}/**/*.ts\"",
42
+ "format:check": "prettier --check \"{src,test,scripts}/**/*.ts\"",
43
+ "typecheck": "tsc --noEmit",
44
+ "check-coverage": "tsx scripts/check-coverage.ts",
45
+ "ci": "npm run lint && npm run typecheck && npm run test:coverage && npm run check-coverage"
46
+ },
47
+ "dependencies": {
48
+ "@ai-sdk/anthropic": "^3.0.69",
49
+ "@ai-sdk/google": "^3.0.62",
50
+ "@ai-sdk/openai": "^3.0.52",
51
+ "@ai-sdk/openai-compatible": "^2.0.41",
52
+ "@anthropic-ai/sdk": "^0.88.0",
53
+ "@aws-sdk/client-s3": "^3.1029.0",
54
+ "@modelcontextprotocol/sdk": "^1.29.0",
55
+ "ai": "^6.0.158",
56
+ "pdf-parse": "^2.4.5",
57
+ "picomatch": "^4.0.4",
58
+ "zod": "^3.23.8",
59
+ "zod-to-json-schema": "^3.25.2"
60
+ },
61
+ "devDependencies": {
62
+ "@types/jest": "^30.0.0",
63
+ "@types/node": "^22.10.0",
64
+ "@types/picomatch": "^4.0.3",
65
+ "@typescript-eslint/eslint-plugin": "^8.15.0",
66
+ "@typescript-eslint/parser": "^8.15.0",
67
+ "@vitest/coverage-v8": "^2.1.5",
68
+ "aws-sdk-client-mock": "^4.1.0",
69
+ "eslint": "^8.57.1",
70
+ "jest": "^30.3.0",
71
+ "prettier": "^3.3.3",
72
+ "ts-jest": "^29.4.9",
73
+ "tsup": "^8.3.5",
74
+ "tsx": "^4.19.2",
75
+ "typescript": "^5.7.2",
76
+ "vitest": "^2.1.5"
77
+ },
78
+ "engines": {
79
+ "node": ">=20.0.0"
80
+ },
81
+ "license": "MIT",
82
+ "keywords": [
83
+ "llm",
84
+ "agent",
85
+ "claude",
86
+ "openai",
87
+ "anthropic",
88
+ "mcp",
89
+ "workflow",
90
+ "automation",
91
+ "engine",
92
+ "cloudflare-workers",
93
+ "r2",
94
+ "agentic"
95
+ ]
96
+ }