opencode-code-simplifier 1.0.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.
Files changed (3) hide show
  1. package/README.md +60 -0
  2. package/dist/plugin.js +12421 -0
  3. package/package.json +30 -0
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "opencode-code-simplifier",
3
+ "version": "1.0.0",
4
+ "description": "Code simplifier plugin for OpenCode - simplifies and refines code for clarity while preserving functionality",
5
+ "main": "dist/plugin.js",
6
+ "types": "dist/plugin.d.ts",
7
+ "files": [
8
+ "dist",
9
+ "README.md"
10
+ ],
11
+ "scripts": {
12
+ "build": "bun build plugin.ts --outfile=dist/plugin.js --target=node",
13
+ "prepublishOnly": "bun run build"
14
+ },
15
+ "keywords": [
16
+ "opencode",
17
+ "opencode-plugin",
18
+ "code-simplifier",
19
+ "refactor",
20
+ "code-quality"
21
+ ],
22
+ "author": "",
23
+ "license": "MIT",
24
+ "dependencies": {
25
+ "@opencode-ai/plugin": "latest"
26
+ },
27
+ "devDependencies": {
28
+ "bun-types": "latest"
29
+ }
30
+ }