prq-cli 0.1.2
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 +82 -0
- package/dist/bin/prq.js +10508 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "prq-cli",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "PR Queue — see what code reviews need your attention",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"prq": "./dist/bin/prq.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "bun build src/bin/prq.ts --outdir dist/bin --target node",
|
|
14
|
+
"dev": "bun run src/bin/prq.ts",
|
|
15
|
+
"typecheck": "tsc --noEmit",
|
|
16
|
+
"test": "bun test",
|
|
17
|
+
"lint": "biome check .",
|
|
18
|
+
"lint:fix": "biome check --write ."
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@octokit/rest": "^21.1.1",
|
|
22
|
+
"commander": "^13.1.0",
|
|
23
|
+
"chalk": "^5.4.1",
|
|
24
|
+
"zod": "^3.24.4"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@biomejs/biome": "^2.4.8",
|
|
28
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
29
|
+
"@semantic-release/github": "^12.0.6",
|
|
30
|
+
"@semantic-release/npm": "^13.1.5",
|
|
31
|
+
"@types/node": "^22.0.0",
|
|
32
|
+
"bun-types": "^1.3.11",
|
|
33
|
+
"semantic-release": "^25.0.3",
|
|
34
|
+
"typescript": "^5.7.0"
|
|
35
|
+
},
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=20"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"github",
|
|
41
|
+
"pull-request",
|
|
42
|
+
"code-review",
|
|
43
|
+
"cli",
|
|
44
|
+
"developer-tools"
|
|
45
|
+
],
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"author": "Caio Pizzol",
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "https://github.com/caiopizzol/prq.git"
|
|
51
|
+
},
|
|
52
|
+
"homepage": "https://github.com/caiopizzol/prq"
|
|
53
|
+
}
|