|
1 | 1 | { |
2 | 2 | "name": "llmforge", |
3 | 3 | "version": "1.0.0", |
4 | | - "description": "A unified, pluggable AI runtime to run prompts across OpenAI, Gemini, Ollama, and custom models — all with a single line of code", |
5 | | - "main": "dist/cjs/index.js", |
6 | | - "module": "dist/esm/index.js", |
7 | | - "types": "dist/esm/index.d.ts", |
| 4 | + "description": "A powerful LLM orchestration framework for building and managing AI applications", |
| 5 | + "main": "dist/index.js", |
| 6 | + "module": "dist/index.mjs", |
| 7 | + "types": "dist/index.d.ts", |
8 | 8 | "files": [ |
9 | 9 | "dist", |
10 | 10 | "README.md" |
11 | 11 | ], |
12 | | - "exports": { |
13 | | - ".": { |
14 | | - "require": "./dist/cjs/index.js", |
15 | | - "import": "./dist/esm/index.js", |
16 | | - "types": "./dist/esm/index.d.ts" |
17 | | - } |
18 | | - }, |
19 | 12 | "scripts": { |
20 | | - "build:cjs": "tsc -p tsconfig.cjs.json", |
21 | | - "build:esm": "tsc -p tsconfig.esm.json", |
22 | | - "build": "npm run build:cjs && npm run build:esm", |
23 | | - "start": "node dist/cjs/index.js", |
24 | | - "test": "echo \"No tests yet\"", |
25 | | - "lint": "echo \"No linting yet\"", |
26 | | - "prepare": "npm run build", |
27 | | - "prepublishOnly": "npm test && npm run lint", |
28 | | - "preversion": "npm run lint", |
29 | | - "version": "npm run format && git add -A src", |
30 | | - "postversion": "git push && git push --tags" |
31 | | - }, |
32 | | - "repository": { |
33 | | - "type": "git", |
34 | | - "url": "git+https://github.com/nginH/llmforge.git" |
35 | | - }, |
36 | | - "publishConfig": { |
37 | | - "access": "public" |
| 13 | + "build": "tsc && tsc -p tsconfig.esm.json", |
| 14 | + "test": "jest", |
| 15 | + "lint": "eslint . --ext .ts", |
| 16 | + "prepare": "npm run build" |
38 | 17 | }, |
39 | 18 | "keywords": [ |
40 | | - "unified", |
41 | | - "pluggable", |
42 | | - "AI", |
43 | | - "llmforge", |
44 | 19 | "llm", |
45 | | - "openai", |
46 | | - "gemini", |
47 | | - "ollama" |
| 20 | + "ai", |
| 21 | + "orchestration", |
| 22 | + "framework", |
| 23 | + "typescript" |
48 | 24 | ], |
49 | | - "author": "Harsh", |
| 25 | + "author": "nginH", |
50 | 26 | "license": "MIT", |
| 27 | + "publishConfig": { |
| 28 | + "access": "public", |
| 29 | + "registry": "https://registry.npmjs.org/" |
| 30 | + }, |
| 31 | + "repository": { |
| 32 | + "type": "git", |
| 33 | + "url": "git+https://github.com/nginH/llmforge.git" |
| 34 | + }, |
51 | 35 | "bugs": { |
52 | 36 | "url": "https://github.com/nginH/llmforge/issues" |
53 | 37 | }, |
54 | 38 | "homepage": "https://github.com/nginH/llmforge#readme", |
55 | 39 | "dependencies": { |
56 | | - "undici": "^7.10.0", |
57 | | - "undici-types": "^7.10.0" |
| 40 | + "axios": "^1.6.7", |
| 41 | + "dotenv": "^16.4.5" |
58 | 42 | }, |
59 | 43 | "devDependencies": { |
60 | | - "typescript": "^5.8.3", |
61 | | - "@semantic-release/changelog": "^6.0.3", |
62 | | - "@semantic-release/git": "^10.0.1", |
63 | | - "@semantic-release/github": "^8.1.0", |
64 | | - "@semantic-release/npm": "^10.0.4", |
65 | | - "semantic-release": "^21.1.1", |
66 | | - "@types/node": "^20.11.24" |
67 | | - }, |
68 | | - "engines": { |
69 | | - "node": ">=18.0.0" |
| 44 | + "@types/jest": "^29.5.12", |
| 45 | + "@types/node": "^20.11.24", |
| 46 | + "@typescript-eslint/eslint-plugin": "^7.1.0", |
| 47 | + "@typescript-eslint/parser": "^7.1.0", |
| 48 | + "eslint": "^8.57.0", |
| 49 | + "jest": "^29.7.0", |
| 50 | + "ts-jest": "^29.1.2", |
| 51 | + "typescript": "^5.3.3" |
70 | 52 | } |
71 | 53 | } |
0 commit comments