spotme 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/dist/index.js CHANGED
@@ -13020,5 +13020,6 @@ var SpotMePlugin = async ({ directory, client }) => {
13020
13020
  };
13021
13021
  };
13022
13022
  export {
13023
+ SpotMePlugin as default,
13023
13024
  SpotMePlugin
13024
13025
  };
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "spotme",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "SpotMe — gym mode for agentic coding. Works with OpenCode and Pi.",
5
5
  "author": {
6
6
  "name": "wtfzambo"
7
7
  },
8
8
  "type": "module",
9
+ "main": "./dist/index.js",
9
10
  "exports": {
10
11
  ".": "./dist/index.js",
11
12
  "./opencode": "./dist/opencode.js",
@@ -20,7 +21,8 @@
20
21
  },
21
22
  "repository": {
22
23
  "type": "git",
23
- "url": "https://github.com/wtfzambo/spotme" },
24
+ "url": "https://github.com/wtfzambo/spotme"
25
+ },
24
26
  "scripts": {
25
27
  "build": "bun build src/index.ts src/opencode.ts src/pi.ts --outdir dist --target bun",
26
28
  "typecheck": "tsc --noEmit",
@@ -62,4 +64,4 @@
62
64
  "typescript": "^5.7.0",
63
65
  "typescript-eslint": "^8.47.0"
64
66
  }
65
- }
67
+ }
package/src/index.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  // Package entry point
2
2
  export { SpotMePlugin } from './opencode.js';
3
+ export { SpotMePlugin as default } from './opencode.js';