-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.85 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.85 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
{
"name": "@elysiumoss/grepo",
"version": "0.4.0",
"description": "AI-powered GitHub repository management CLI — generate READMEs, topics, descriptions, and more using Gemini",
"keywords": [
"ai",
"cli",
"documentation",
"gemini",
"github",
"readme",
"repository"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ElysiumOSS/grepo.git"
},
"license": "MIT",
"author": {
"name": "Mike Odnis",
"url": "https://github.com/WomB0ComB0"
},
"type": "module",
"main": "lib/index.js",
"bin": {
"grepo": "lib/cli.js"
},
"files": [
"LICENSE.md",
"README.md",
"lib/",
"package.json"
],
"scripts": {
"build": "tsdown",
"docs": "bunx typedoc --entryPointStrategy Expand src",
"format": "biome format --write .",
"lint": "biome check .",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
"lint:packages": "bun pm ls",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"prepare": "husky",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
},
"dependencies": {
"@effect/platform": "^0.94.2",
"@google/genai": "^1.22.0",
"@mermaid-js/mermaid-cli": "^11.12.0",
"effect": "^3.19.15"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@release-it/conventional-changelog": "10.0.1",
"@types/bun": "^1.3.10",
"@types/node": "24.6.2",
"@vitest/coverage-v8": "3.2.4",
"console-fail-test": "0.5.0",
"cspell": "9.2.1",
"husky": "9.1.7",
"knip": "5.64.1",
"lint-staged": "16.2.3",
"markdownlint": "0.38.0",
"markdownlint-cli": "0.45.0",
"release-it": "19.0.5",
"sentences-per-line": "0.3.0",
"tsdown": "0.15.6",
"typescript": "5.9.3",
"vitest": "3.2.4"
},
"engines": {
"node": ">=20.19.0"
},
"publishConfig": {
"provenance": true
}
}