opencode-img 0.1.0 → 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.
- package/README.md +1 -1
- package/package.json +9 -7
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ An OpenCode V2 plugin that generates and edits bitmap images through the OpenAI
|
|
|
9
9
|
|
|
10
10
|
Source: [github.com/mattsafaii/opencode-img](https://github.com/mattsafaii/opencode-img)
|
|
11
11
|
|
|
12
|
-
**Status:**
|
|
12
|
+
**Status:** early release.
|
|
13
13
|
|
|
14
14
|
## What it does
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-img",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "An OpenCode V2 plugin that generates and edits bitmap images through the OpenAI Image API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -16,6 +16,12 @@
|
|
|
16
16
|
"README.md",
|
|
17
17
|
"LICENSE"
|
|
18
18
|
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"test": "node --test \"test/**/*.test.ts\"",
|
|
21
|
+
"typecheck": "tsc --noEmit",
|
|
22
|
+
"build": "tsc -p tsconfig.build.json",
|
|
23
|
+
"prepublishOnly": "pnpm typecheck && pnpm test && pnpm build"
|
|
24
|
+
},
|
|
19
25
|
"keywords": [
|
|
20
26
|
"opencode",
|
|
21
27
|
"opencode-plugin",
|
|
@@ -34,16 +40,12 @@
|
|
|
34
40
|
"publishConfig": {
|
|
35
41
|
"access": "public"
|
|
36
42
|
},
|
|
43
|
+
"packageManager": "pnpm@12.5.1",
|
|
37
44
|
"dependencies": {
|
|
38
45
|
"@opencode/plugin": "^2.0.10"
|
|
39
46
|
},
|
|
40
47
|
"devDependencies": {
|
|
41
48
|
"@types/node": "^24.0.0",
|
|
42
49
|
"typescript": "^5.9.0"
|
|
43
|
-
},
|
|
44
|
-
"scripts": {
|
|
45
|
-
"test": "node --test \"test/**/*.test.ts\"",
|
|
46
|
-
"typecheck": "tsc --noEmit",
|
|
47
|
-
"build": "tsc -p tsconfig.build.json"
|
|
48
50
|
}
|
|
49
|
-
}
|
|
51
|
+
}
|