opencode-sonarqube 0.1.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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +409 -0
  3. package/dist/index.js +20701 -0
  4. package/package.json +58 -0
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "opencode-sonarqube",
3
+ "version": "0.1.0",
4
+ "description": "OpenCode Plugin for SonarQube integration - Enterprise-level code quality from the start",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist",
10
+ "README.md"
11
+ ],
12
+ "scripts": {
13
+ "build": "bun build ./src/index.ts --outdir ./dist --target node",
14
+ "dev": "bun run --watch src/index.ts",
15
+ "typecheck": "tsc --noEmit",
16
+ "test": "bun test",
17
+ "test:coverage": "bun test --coverage --coverage-reporter=lcov",
18
+ "prepublishOnly": "bun run build"
19
+ },
20
+ "keywords": [
21
+ "opencode",
22
+ "opencode-plugin",
23
+ "sonarqube",
24
+ "code-quality",
25
+ "static-analysis",
26
+ "linting",
27
+ "security"
28
+ ],
29
+ "author": "Manuel Guttmann",
30
+ "license": "MIT",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "https://github.com/mguttmann/opencode-sonarqube.git"
34
+ },
35
+ "bugs": {
36
+ "url": "https://github.com/mguttmann/opencode-sonarqube/issues"
37
+ },
38
+ "homepage": "https://github.com/mguttmann/opencode-sonarqube#readme",
39
+ "dependencies": {
40
+ "@opencode-ai/plugin": "^1.1.34",
41
+ "zod": "^3.24.0"
42
+ },
43
+ "devDependencies": {
44
+ "@types/bun": "latest",
45
+ "typescript": "^5.7.0"
46
+ },
47
+ "peerDependencies": {
48
+ "sonarqube-scanner": "^4.0.0"
49
+ },
50
+ "peerDependenciesMeta": {
51
+ "sonarqube-scanner": {
52
+ "optional": true
53
+ }
54
+ },
55
+ "engines": {
56
+ "node": ">=18.0.0"
57
+ }
58
+ }