@0byte/oc_mlflow_plugin 0.1.1

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.
Files changed (2) hide show
  1. package/build/index.js +120628 -0
  2. package/package.json +38 -0
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "private": false,
3
+ "publishConfig": {
4
+ "access": "public"
5
+ },
6
+ "name": "@0byte/oc_mlflow_plugin",
7
+ "version": "0.1.1",
8
+ "type": "module",
9
+ "main": "./build/index.js",
10
+ "exports": {
11
+ ".": "./build/index.js"
12
+ },
13
+ "files": [
14
+ "build"
15
+ ],
16
+ "scripts": {
17
+ "typecheck": "tsc --noEmit",
18
+ "check_fix": "biome check . --write --unsafe",
19
+ "check_all": "bun run check_fix && bun run typecheck",
20
+ "clean": "rimraf node_modules .turbo build",
21
+ "test": "AGENT=1 bun test test/unit",
22
+ "build": "bun build src/index.ts --outdir ./build --target node --env disable",
23
+ "version": "changeset version",
24
+ "publish": "changeset publish"
25
+ },
26
+ "devDependencies": {
27
+ "@changesets/cli": "^2.30.0",
28
+ "@repo/tsconfig": "workspace:*",
29
+ "@types/bun": "latest"
30
+ },
31
+ "peerDependencies": {
32
+ "typescript": "^5"
33
+ },
34
+ "dependencies": {
35
+ "@mlflow/core": "^0.2.0",
36
+ "@opencode-ai/plugin": "^1.3.13"
37
+ }
38
+ }