@the-magic-tower/fixhive-opencode-plugin 0.1.0

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 (3) hide show
  1. package/README.md +134 -0
  2. package/dist/index.js +1782 -0
  3. package/package.json +68 -0
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@the-magic-tower/fixhive-opencode-plugin",
3
+ "version": "0.1.0",
4
+ "description": "Community-based error knowledge sharing for OpenCode",
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": "tsup src/index.ts --format esm --clean",
19
+ "build:dts": "tsup src/index.ts --format esm --dts --clean",
20
+ "dev": "tsup src/index.ts --format esm --watch",
21
+ "typecheck": "tsc --noEmit",
22
+ "lint": "eslint src --ext .ts",
23
+ "test": "vitest",
24
+ "test:coverage": "vitest --coverage",
25
+ "prepublishOnly": "npm run build"
26
+ },
27
+ "keywords": [
28
+ "opencode",
29
+ "plugin",
30
+ "error",
31
+ "knowledge",
32
+ "community",
33
+ "ai",
34
+ "developer-tools",
35
+ "debugging"
36
+ ],
37
+ "author": "Seoul Ventures",
38
+ "license": "MIT",
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "https://github.com/TheMagicTower/FixHive.git"
42
+ },
43
+ "peerDependencies": {
44
+ "@opencode-ai/plugin": "^1.1.1"
45
+ },
46
+ "dependencies": {
47
+ "@supabase/supabase-js": "^2.45.0",
48
+ "better-sqlite3": "^11.3.0",
49
+ "openai": "^4.60.0",
50
+ "uuid": "^10.0.0"
51
+ },
52
+ "devDependencies": {
53
+ "@opencode-ai/plugin": "^1.1.1",
54
+ "@types/better-sqlite3": "^7.6.11",
55
+ "@types/node": "^22.0.0",
56
+ "@types/uuid": "^10.0.0",
57
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
58
+ "@typescript-eslint/parser": "^8.0.0",
59
+ "eslint": "^9.0.0",
60
+ "tsup": "^8.2.0",
61
+ "typescript": "^5.5.0",
62
+ "vitest": "^2.0.0",
63
+ "zod": "^4.3.5"
64
+ },
65
+ "engines": {
66
+ "node": ">=20.0.0"
67
+ }
68
+ }