gnhf 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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +156 -0
  3. package/dist/cli.mjs +1247 -0
  4. package/package.json +46 -0
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "gnhf",
3
+ "version": "0.1.0",
4
+ "description": "Before I go to bed, I tell my agents: good night, have fun",
5
+ "type": "module",
6
+ "bin": {
7
+ "gnhf": "dist/cli.mjs"
8
+ },
9
+ "scripts": {
10
+ "build": "tsdown",
11
+ "dev": "tsdown --watch",
12
+ "start": "node dist/cli.js",
13
+ "lint": "eslint src",
14
+ "format": "prettier --write src",
15
+ "format:check": "prettier --check src",
16
+ "test": "vitest run",
17
+ "test:coverage": "vitest run --coverage"
18
+ },
19
+ "dependencies": {
20
+ "commander": "^14.0.3",
21
+ "js-yaml": "^4.1.1"
22
+ },
23
+ "devDependencies": {
24
+ "@eslint/js": "^9.0.0",
25
+ "@types/js-yaml": "^4.0.9",
26
+ "@types/node": "^22.0.0",
27
+ "eslint": "^9.0.0",
28
+ "eslint-config-prettier": "^10.0.0",
29
+ "prettier": "^3.0.0",
30
+ "tsdown": "^0.21.7",
31
+ "typescript": "^5.8.0",
32
+ "typescript-eslint": "^8.0.0",
33
+ "vitest": "^4.1.2"
34
+ },
35
+ "files": [
36
+ "dist",
37
+ "LICENSE",
38
+ "README.md"
39
+ ],
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "engines": {
44
+ "node": ">=20"
45
+ }
46
+ }