generated from 2nthony/ts-lib-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.05 KB
/
package.json
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
{
"name": "ghq-node",
"version": "0.0.0",
"description": "GitHub repositories Query manager",
"author": "2nthony",
"license": "MIT",
"funding": "https://github.com/sponsors/2nthony",
"repository": "2nthony/ghq",
"publishConfig": {
"access": "public"
},
"keywords": [
"git",
"ghq",
"vcs",
"cli",
"github"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"ghq": "./dist/cli.js",
"ghq-node": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "esno 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",
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix"
},
"devDependencies": {
"@2nthony/eslint-config": "^1.0.3",
"@types/node": "18.19.60",
"cac": "6.7.14",
"eslint": "^8.42.0",
"esno": "0.16.3",
"tsup": "7.3.0",
"typescript": "5.6.3",
"url-join": "5.0.0",
"vitest": "0.32.2"
}
}