@toneflix/grithub 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. package/LICENSE +15 -0
  2. package/README.md +82 -0
  3. package/bin/cli.cjs +2002 -0
  4. package/bin/cli.js +1960 -0
  5. package/package.json +89 -0
package/package.json ADDED
@@ -0,0 +1,89 @@
1
+ {
2
+ "name": "@toneflix/grithub",
3
+ "type": "module",
4
+ "version": "0.1.0",
5
+ "description": "Command-line toolkit that blends hand-crafted workflows with OpenAPI-generated commands for GitHub.",
6
+ "main": "bin/cli.js",
7
+ "private": false,
8
+ "homepage": "https://grithub.toneflix.net",
9
+ "repository": {
10
+ "url": "https://github.com/toneflix/grithub.git",
11
+ "type": "git"
12
+ },
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "bin": {
17
+ "grithub": "bin/cli.js"
18
+ },
19
+ "exports": {
20
+ ".": "./bin/cli.js"
21
+ },
22
+ "files": [
23
+ "bin",
24
+ "bin/cli.js",
25
+ "bin/cli.cjs"
26
+ ],
27
+ "keywords": [
28
+ "grithub",
29
+ "cli",
30
+ "command-line",
31
+ "tool",
32
+ "integration",
33
+ "sdk",
34
+ "api",
35
+ "developer",
36
+ "h3ravel",
37
+ "toneflix"
38
+ ],
39
+ "dependencies": {
40
+ "@antfu/install-pkg": "^1.1.0",
41
+ "@h3ravel/musket": "^0.10.1",
42
+ "@h3ravel/shared": "^0.30.3",
43
+ "@ngrok/ngrok": "^1.7.0",
44
+ "@octokit/oauth-methods": "^6.0.2",
45
+ "@octokit/openapi": "^22.0.0",
46
+ "@octokit/rest": "^22.0.1",
47
+ "axios": "^1.13.2",
48
+ "better-sqlite3": "^12.6.2",
49
+ "cli-table3": "^0.6.5",
50
+ "dotenv": "^17.2.3",
51
+ "fast-diff": "^1.3.0",
52
+ "open": "^11.0.0",
53
+ "tsdown": "^0.15.4"
54
+ },
55
+ "devDependencies": {
56
+ "@changesets/cli": "^2.29.5",
57
+ "@eslint/js": "^9.39.2",
58
+ "@eslint/markdown": "^7.5.1",
59
+ "@octokit/openapi-types": "^27.0.0",
60
+ "@swc/core": "^1.6.1",
61
+ "@types/better-sqlite3": "^7.6.13",
62
+ "@types/node": "^20.14.5",
63
+ "eslint": "^9.39.2",
64
+ "sass-embedded": "^1.90.0",
65
+ "ts-node": "^10.9.2",
66
+ "tsx": "^4.20.3",
67
+ "typescript": "^5.4.5",
68
+ "typescript-eslint": "^8.53.0",
69
+ "vite-tsconfig-paths": "^5.1.4",
70
+ "vitepress": "^1.5.0",
71
+ "vitest": "^3.2.4",
72
+ "vue": "^3.5.13"
73
+ },
74
+ "scripts": {
75
+ "quick:test": "pnpm vitest",
76
+ "test": "pnpm run quick:test",
77
+ "lint": "eslint . --ext .ts --ext .js",
78
+ "runner": "tsx --experimental-specifier-resolution=node src/cli.ts",
79
+ "build": "tsdown",
80
+ "dummy": "node ./tests/test.sever.js",
81
+ "version": "pnpm run build",
82
+ "unlink": "pnpm uninstall --global @toneflix/grithub",
83
+ "release": "pnpm build && pnpm changeset version && pnpm changeset publish",
84
+ "publish-it": "pnpm build && pnpm publish --tag latest",
85
+ "docs:dev": "vitepress dev docs",
86
+ "docs:build": "vitepress build docs",
87
+ "docs:preview": "vitepress preview docs"
88
+ }
89
+ }