-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.45 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@bitrockteam/sonarflow",
"version": "1.0.0-beta.3",
"description": "CLI utility for fetching SonarQube issues and integrating with Bitbucket/GitHub PR workflows",
"main": "dist/cli.js",
"bin": {
"sonarflow": "./dist/cli.js"
},
"scripts": {
"build": "tsgo",
"dev": "tsgo --watch",
"lint": "biome lint src",
"lint:fix": "biome lint --write src",
"format": "biome format --write src",
"check": "biome check src",
"check:fix": "biome check --write src",
"prepublishOnly": "echo 'Publishing @bitrockteam/sonarflow...' && bun run build",
"init": "node dist/cli.js init",
"fetch": "node dist/cli.js fetch",
"mcp": "node dist/cli.js mcp",
"sonar:fetch": "npx @bitrockteam/sonarflow fetch",
"prepare": "husky",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:patch": "standard-version --release-as patch",
"release:first": "standard-version --first-release"
},
"files": [
"dist",
"src/templates",
"src/prompts",
"schemas",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bitrockteam/sonarflow.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"sonarqube",
"sonar",
"code-quality",
"linting",
"bitbucket",
"github",
"pr",
"pull-request",
"cli",
"autofixer",
"sonarflow",
"code-analysis"
],
"author": "bitrockteam",
"license": "ISC",
"bugs": {
"url": "https://github.com/bitrockteam/sonarflow/issues"
},
"homepage": "https://github.com/bitrockteam/sonarflow#readme",
"dependencies": {
"@inquirer/prompts": "^7.10.1",
"@modelcontextprotocol/sdk": "^1.22.0",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"figlet": "^1.9.4",
"fs-extra": "^11.3.2",
"gradient-string": "^3.0.0",
"ora": "^9.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.3.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.19.1",
"@typescript/native-preview": "^7.0.0-dev.20251116.1",
"husky": "^9.1.7",
"standard-version": "^9.5.0",
"@types/bun": "latest"
},
"type": "module",
"engines": {
"node": ">=22.21.0"
},
"packageManager": "[email protected]",
"private": true,
"peerDependencies": {
"typescript": "^5.9.3"
}
}