-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.21 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.21 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
{
"name": "gh-explorer",
"version": "1.0.2",
"description": "AI-powered CLI tool for analyzing GitHub trending repositories and URL metadata",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"gh-explorer": "./dist/cli.cjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsc && tsup",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "c8 node --loader ts-node/esm --test __tests__/**",
"test:watch": "c8 node --loader ts-node/esm --test --watch __tests__/**",
"coverage:view": "open coverage/lcov-report/index.html",
"version": "changeset version",
"release": "changeset publish",
"prepare": "husky || true"
},
"author": {
"name": "zjy365",
"email": "3161362058@qq.com",
"url": "https://github.com/zjy365"
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"keywords": [
"github",
"trending",
"repositories",
"url",
"metadata",
"cli",
"analysis",
"ai",
"developer-tools"
],
"homepage": "https://github.com/zjy365/gh-explorer",
"bugs": {
"url": "https://github.com/zjy365/gh-explorer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/zjy365/gh-explorer"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.22",
"ai": "^4.3.15",
"axios": "^1.4.0",
"chalk": "^5.2.0",
"cheerio": "^1.0.0-rc.12",
"commander": "^13.1.0",
"ora": "^8.2.0",
"table": "^6.8.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@types/node": "^20.14.10",
"c8": "^10.1.2",
"eslint": "^9.6.0",
"eslint-plugin-security": "^3.0.1",
"husky": "^9.0.11",
"lint-staged": "^16.1.0",
"lockfile-lint": "^4.14.0",
"neostandard": "^0.12.1",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"validate-conventional-commit": "^1.0.4"
},
"lint-staged": {
"**/*.{js,json}": [
"pnpm run lint:fix"
]
}
}