spotme 0.1.0 → 0.1.2
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 +11542 -11903
- package/dist/opencode.js +11541 -11903
- package/package.json +7 -6
- package/src/index.ts +1 -0
- package/dist/pi.js +0 -258275
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spotme",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
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
|
-
"./opencode": "./dist/opencode.js"
|
|
12
|
-
"./pi": "./dist/pi.js"
|
|
12
|
+
"./opencode": "./dist/opencode.js"
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
15
|
"dist",
|
|
@@ -20,9 +20,10 @@
|
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
23
|
-
"url": "https://github.com/wtfzambo/spotme"
|
|
23
|
+
"url": "https://github.com/wtfzambo/spotme"
|
|
24
|
+
},
|
|
24
25
|
"scripts": {
|
|
25
|
-
"build": "bun build src/index.ts src/opencode.ts
|
|
26
|
+
"build": "bun build src/index.ts src/opencode.ts --outdir dist --target bun",
|
|
26
27
|
"typecheck": "tsc --noEmit",
|
|
27
28
|
"lint": "eslint src",
|
|
28
29
|
"lint:fix": "eslint src --fix",
|
|
@@ -62,4 +63,4 @@
|
|
|
62
63
|
"typescript": "^5.7.0",
|
|
63
64
|
"typescript-eslint": "^8.47.0"
|
|
64
65
|
}
|
|
65
|
-
}
|
|
66
|
+
}
|
package/src/index.ts
CHANGED