-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.54 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
{
"name": "@mozilla-ai/otari",
"version": "0.5.0",
"description": "TypeScript SDK for the otari gateway",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check src/ tests/",
"lint:fix": "biome check --write src/ tests/",
"format": "biome format src/ tests/",
"format:fix": "biome format --write src/ tests/",
"check": "biome check src/ tests/ && tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"llm",
"ai",
"gateway",
"openai",
"otari"
],
"author": "Mozilla.ai",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-ai/otari-sdk-ts.git"
},
"bugs": {
"url": "https://github.com/mozilla-ai/otari-sdk-ts/issues"
},
"homepage": "https://github.com/mozilla-ai/otari-sdk-ts#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=24"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/node": "^24.12.4",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
}
}