opencode-lisa 0.1.0 → 0.2.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.
- package/README.md +11 -1
- package/dist/index.js +14086 -0
- package/package.json +19 -4
- package/.opencode/command/lisa.md +0 -7
- package/.opencode/plugin/lisa.ts +0 -1228
- package/.opencode/skill/lisa/SKILL.md +0 -841
package/package.json
CHANGED
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-lisa",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Lisa - intelligent epic workflow plugin for OpenCode. Like Ralph Wiggum, but smarter.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./dist/index.js"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "bun build src/index.ts --outdir dist --target bun --format esm",
|
|
17
|
+
"prepublishOnly": "npm run build"
|
|
18
|
+
},
|
|
5
19
|
"keywords": [
|
|
6
20
|
"opencode",
|
|
7
21
|
"opencode-plugin",
|
|
@@ -23,10 +37,11 @@
|
|
|
23
37
|
"bugs": {
|
|
24
38
|
"url": "https://github.com/fractalswift/lisa-simpson/issues"
|
|
25
39
|
},
|
|
26
|
-
"files": [
|
|
27
|
-
".opencode"
|
|
28
|
-
],
|
|
29
40
|
"peerDependencies": {
|
|
30
41
|
"@opencode-ai/plugin": ">=1.0.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@opencode-ai/plugin": "^1.1.25",
|
|
45
|
+
"typescript": "^5.0.0"
|
|
31
46
|
}
|
|
32
47
|
}
|