forked from themaximalist/llm.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.59 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.59 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
{
"name": "@themaximalist/llm.js",
"version": "1.0.1",
"description": "One interface to hundreds of LLM models, zero dependencies, tons of features, for Browser and Node.js",
"homepage": "https://llmjs.themaximalist.com",
"repository": {
"type": "git",
"url": "git+https://github.com/themaximal1st/llm.js.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"build:models": "curl 'https://raw.githubusercontent.com/BerriAI/litellm/refs/heads/main/model_prices_and_context_window.json' -o data/model_prices_and_context_window.json",
"build:website": "cd public && ./build.sh",
"build:docs": "typedoc",
"build:all": "npm run build && npm run build:models && npm run build:website && npm run build:docs",
"test": "vitest --config test/vitest.config.ts",
"test:browser": "vitest --project=browser",
"test:all": "vitest --config test/vitest.config.ts --run && vitest --project=browser --run"
},
"keywords": [
"llm",
"large",
"language",
"model",
"gpt"
],
"author": "The Maximalist",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.15.30",
"@vitest/browser": "^3.2.2",
"playwright": "^1.52.0",
"typedoc": "^0.28.5",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-static-copy": "^3.0.0",
"vitest": "^3.1.4"
}
}