-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.09 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.09 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
{
"name": "ghq-node",
"version": "0.0.0",
"description": "GitHub repositories Query manager",
"keywords": [
"cli",
"ghq",
"git",
"github",
"vcs"
],
"license": "MIT",
"author": "2nthony",
"repository": "2nthony/ghq",
"funding": "https://github.com/sponsors/2nthony",
"bin": {
"ghq": "./dist/cli.js",
"ghq-node": "./dist/cli.js"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build-fast": "tsup src/cli.ts",
"build": "pnpm run build-fast --minify",
"test": "vitest run",
"test:watch": "vitest watch",
"prepublishOnly": "pnpm run build",
"fmt": "oxfmt",
"fmt-check": "oxfmt --check",
"lint": "oxlint .",
"lint-fix": "npm run lint -- --fix"
},
"devDependencies": {
"@types/node": "25.6.0",
"cac": "7.0.0",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0",
"tsup": "8.5.1",
"tsx": "^4.21.0",
"typescript": "5.9.3",
"url-join": "5.0.0",
"vitest": "4.1.4"
}
}