-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 4.36 KB
/
package.json
File metadata and controls
143 lines (143 loc) · 4.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@just-every/ensemble",
"version": "0.2.220",
"description": "LLM provider abstraction layer with unified streaming interface",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/just-every/ensemble.git"
},
"keywords": [
"llm",
"ai",
"openai",
"anthropic",
"gemini",
"deepseek",
"grok",
"streaming",
"model-providers"
],
"author": "just-every",
"license": "MIT",
"bugs": {
"url": "https://github.com/just-every/ensemble/issues"
},
"homepage": "https://github.com/just-every/ensemble#readme",
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:fixup",
"build:esm": "tsc -p .",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:fixup": "node scripts/fixup-cjs.js",
"demo": "npx tsx demo/start-all-demos.ts",
"demo:voice": "npm run build && npx tsx demo/voice-server.ts",
"demo:transcription": "npx tsx demo/transcription-server.ts",
"demo:request": "npx tsx demo/request-server.ts",
"demo:embed": "npx tsx demo/embed-server.ts",
"clean": "rimraf dist",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint '**/*.{ts,tsx}'",
"lint:fix": "eslint '**/*.{ts,tsx}' --fix",
"docs": "typedoc",
"demo:live": "npm run build && npx tsx demo/live-server.ts",
"demo:listen": "npm run build && npx tsx demo/transcription-server.ts",
"smoke:gemini:image": "npm run build && node scripts/smoke_gemini_image.mjs",
"smoke:stability:image": "npm run build && node scripts/smoke_stability_image.mjs",
"smoke:luma:image": "npm run build && node scripts/smoke_luma_image.mjs",
"smoke:ideogram:image": "npm run build && node scripts/smoke_ideogram_image.mjs",
"smoke:runway:image": "npm run build && node scripts/smoke_runway_image.mjs",
"smoke:mj:image": "npm run build && node scripts/smoke_midjourney_image.mjs",
"smoke:images": "npm run smoke:gemini:image && npm run smoke:stability:image && npm run smoke:luma:image && npm run smoke:ideogram:image && npm run smoke:runway:image && npm run smoke:mj:image"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/cjs/index.cjs",
"types": "./dist/index.d.ts"
},
"./test": {
"import": "./dist/test.js",
"require": "./dist/cjs/test.cjs",
"types": "./dist/test.d.ts"
},
"./types": {
"import": "./dist/types.js",
"require": "./dist/cjs/types.cjs",
"types": "./dist/types.d.ts"
},
"./cost_tracker": {
"import": "./dist/cost_tracker.js",
"require": "./dist/cjs/cost_tracker.cjs",
"types": "./dist/cost_tracker.d.ts"
},
"./model_providers/*": {
"import": "./dist/model_providers/*.js",
"require": "./dist/cjs/model_providers/*.cjs",
"types": "./dist/model_providers/*.d.ts"
},
"./utils/*": {
"import": "./dist/utils/*.js",
"require": "./dist/cjs/utils/*.cjs",
"types": "./dist/utils/*.d.ts"
},
"./utils/audio_stream_player": {
"import": "./dist/utils/audio_stream_player.js",
"require": "./dist/cjs/utils/audio_stream_player.cjs",
"types": "./dist/utils/audio_stream_player.d.ts"
}
},
"dependencies": {
"@anthropic-ai/sdk": "^0.91.1",
"@google/genai": "^1.50.1",
"openai": "^6.34.0",
"uuid": "^14.0.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"dotenv": "^17.4.2",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"express": "^5.2.1",
"open": "^11.0.0",
"rimraf": "^6.1.3",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.60.2",
"sharp": "^0.34.5"
},
"overrides": {
"js-yaml": "4.1.1",
"jws": "4.0.1",
"glob": "13.0.6",
"test-exclude": {
"glob": "10.5.0"
},
"gaxios": {
"rimraf": {
"glob": "10.5.0"
}
}
},
"publishConfig": {
"access": "public"
}
}