@cubocompany/opengem 0.1.0 → 0.2.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 (3) hide show
  1. package/README.md +97 -97
  2. package/dist/cli.js +1511 -0
  3. package/package.json +12 -2
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "@cubocompany/opengem",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "OpenGem — OpenCode plugin for Obsidian. Read, write, search, and build a compounding wiki knowledge base via the Obsidian CLI.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "exports": {
8
8
  ".": "./dist/index.js"
9
9
  },
10
+ "bin": {
11
+ "opengem": "./dist/cli.js"
12
+ },
10
13
  "files": [
11
14
  "dist",
12
15
  "skills"
@@ -19,9 +22,13 @@
19
22
  "wiki",
20
23
  "llm"
21
24
  ],
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/cubocompany/opengem"
28
+ },
22
29
  "license": "MIT",
23
30
  "scripts": {
24
- "build": "bun build src/index.ts --outdir dist --format esm --external @opencode-ai/plugin",
31
+ "build": "bun build src/index.ts --outdir dist --format esm --external @opencode-ai/plugin && bun build src/cli.ts --outdir dist --format esm --target node",
25
32
  "prepublishOnly": "bun run build",
26
33
  "test": "bun test",
27
34
  "check": "tsc --noEmit",
@@ -29,10 +36,13 @@
29
36
  "release": "semantic-release"
30
37
  },
31
38
  "dependencies": {
39
+ "@clack/prompts": "^1.2.0",
32
40
  "@opencode-ai/plugin": "1.4.6"
33
41
  },
34
42
  "devDependencies": {
43
+ "@semantic-release/changelog": "^6.0.3",
35
44
  "@semantic-release/commit-analyzer": "^13.0.1",
45
+ "@semantic-release/git": "^10.0.1",
36
46
  "@semantic-release/github": "^12.0.6",
37
47
  "@semantic-release/npm": "^13.1.5",
38
48
  "@semantic-release/release-notes-generator": "^14.1.0",