@oai2lmapi/opencode-provider 0.1.0-prerelease.20260115130629.e7d4f72

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,50 @@
1
+ {
2
+ "name": "@oai2lmapi/opencode-provider",
3
+ "version": "0.1.0-prerelease.20260115130629.e7d4f72",
4
+ "description": "OpenAI-compatible provider for OpenCode with auto-discovery and advanced features",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "scripts": {
18
+ "build": "tsc",
19
+ "watch": "tsc --watch",
20
+ "clean": "rm -rf dist",
21
+ "test": "echo \"Tests not yet implemented\"",
22
+ "lint": "echo \"Linting not yet configured\""
23
+ },
24
+ "keywords": [
25
+ "opencode",
26
+ "openai",
27
+ "ai-sdk",
28
+ "provider",
29
+ "llm"
30
+ ],
31
+ "author": "OAI2LMApi Contributors",
32
+ "license": "MIT",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/hugefiver/OAI2LMApi.git",
36
+ "directory": "packages/opencode-provider"
37
+ },
38
+ "peerDependencies": {
39
+ "ai": "^4.0.0"
40
+ },
41
+ "dependencies": {
42
+ "@ai-sdk/openai-compatible": "^1.0.0",
43
+ "@ai-sdk/provider": "^1.0.0",
44
+ "@ai-sdk/provider-utils": "^2.0.0"
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "^22.0.0",
48
+ "typescript": "^5.9.3"
49
+ }
50
+ }