-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 4.02 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 4.02 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "ghextractor",
"version": "0.9.9",
"description": "Universal CLI tool to extract GitHub data (PRs, commits, issues, releases) into Markdown/JSON",
"type": "module",
"main": "./out/main/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"bin": {
"ghextractor": "bin/ghextractor.js",
"ghextractor-cli": "bin/ghextractor.js --cli",
"ghextractor-gui": "bin/ghextractor.js --gui"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "node bin/ghextractor.js",
"dev:cli": "tsx src/index.ts",
"dev:gui": "electron-vite dev",
"build": "tsup src/index.ts --format esm,cjs --dts",
"build:gui": "electron-vite build",
"build:all": "npm run clean:full && npm run build && npm run build:gui",
"clean:gui": "rimraf out dist",
"clean:full": "rimraf out dist node_modules/.vite node_modules/.electron-vite .turbo",
"preview:gui": "npx electron ./out/main/index.js",
"test": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test:bench": "vitest bench",
"test:ui": "vitest --ui",
"lint": "eslint src/**/*.ts tests/**/*.ts vitest.config.ts --ignore-path .eslintignore --quiet",
"lint:fix": "eslint src/**/*.ts tests/**/*.ts vitest.config.ts --fix --ignore-path .eslintignore --quiet",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"vitest.config.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"vitest.config.ts\"",
"type-check": "tsc --noEmit",
"security:audit": "npm audit --audit-level=moderate",
"security:fix": "npm audit fix",
"prepublishOnly": "npm run build:all",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"knip": "knip",
"knip:fix": "knip --fix",
"dead-code": "npx ts-prune"
},
"keywords": [
"github",
"cli",
"extractor",
"export",
"backup",
"documentation",
"pull-requests",
"issues",
"commits"
],
"author": "LeSoviet",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LeSoviet/GithubCLIExtractor.git"
},
"bugs": {
"url": "https://github.com/LeSoviet/GithubCLIExtractor/issues"
},
"homepage": "https://github.com/LeSoviet/GithubCLIExtractor#readme",
"dependencies": {
"@clack/prompts": "^0.8.0",
"bottleneck": "^2.19.5",
"chalk": "^5.3.0",
"chart.js": "^4.5.1",
"date-fns": "^3.0.0",
"handlebars": "^4.7.8",
"marked": "^15.0.12",
"ora": "^8.0.0",
"pdf-lib": "^1.17.1",
"puppeteer": "^24.31.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.10.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.6.1",
"electron": "^31.0.0",
"electron-vite": "^2.3.0",
"eslint": "^8.56.0",
"happy-dom": "^20.0.10",
"knip": "^5.70.1",
"lint-staged": "^15.2.0",
"msw": "^2.12.2",
"prettier": "^3.2.0",
"rimraf": "^6.1.2",
"semantic-release": "^25.0.2",
"ts-prune": "^0.10.3",
"tsup": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vite": "^5.4.2",
"vitepress": "^1.6.4",
"vitest": "^1.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}