opencode-for-rust 0.1.0-next.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/LICENSE +21 -0
- package/README.md +58 -0
- package/dist/index.js +19145 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "opencode-for-rust",
|
|
3
|
+
"version": "0.1.0-next.1",
|
|
4
|
+
"description": "OpenCode plugin for Rust",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Sisyphus",
|
|
7
|
+
"email": "sisyphus@opencode.ai"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/cgasgarth/opencode-for-rust"
|
|
19
|
+
},
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public",
|
|
22
|
+
"provenance": true
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"src/version.ts"
|
|
27
|
+
],
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@opencode-ai/plugin": "1.0.85",
|
|
30
|
+
"tree-sitter": "^0.25.0",
|
|
31
|
+
"tree-sitter-rust": "^0.24.0"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@eslint/js": "^9.39.1",
|
|
35
|
+
"@types/node": "^20.11.5",
|
|
36
|
+
"@typescript-eslint/eslint-plugin": "8.47.0",
|
|
37
|
+
"@typescript-eslint/parser": "8.47.0",
|
|
38
|
+
"bun-types": "latest",
|
|
39
|
+
"eslint": "^9.39.1",
|
|
40
|
+
"eslint-config-prettier": "10.1.8",
|
|
41
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
42
|
+
"husky": "^9.1.7",
|
|
43
|
+
"lint-staged": "^16.2.7",
|
|
44
|
+
"prettier": "^3.2.4",
|
|
45
|
+
"typescript-eslint": "^8.47.0",
|
|
46
|
+
"vitest": "^3.2.4"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"test": "bun test tests/",
|
|
50
|
+
"typecheck": "tsc --noEmit",
|
|
51
|
+
"build": "bun build ./src/index.ts --outdir dist --target bun",
|
|
52
|
+
"lint": "eslint src --max-warnings 0",
|
|
53
|
+
"format": "prettier --check .",
|
|
54
|
+
"prepare": "husky"
|
|
55
|
+
},
|
|
56
|
+
"lint-staged": {
|
|
57
|
+
"*.{ts,tsx}": [
|
|
58
|
+
"eslint --max-warnings 0",
|
|
59
|
+
"prettier --write"
|
|
60
|
+
],
|
|
61
|
+
"*.{json,md}": [
|
|
62
|
+
"prettier --write"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
"trustedDependencies": [
|
|
66
|
+
"tree-sitter",
|
|
67
|
+
"tree-sitter-rust"
|
|
68
|
+
]
|
|
69
|
+
}
|