gnhf 0.1.8 → 0.1.10
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.
- package/README.md +27 -10
- package/dist/cli.mjs +837 -114
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gnhf",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "Before I go to bed, I tell my agents: good night, have fun",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,12 +9,13 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsdown",
|
|
11
11
|
"dev": "tsdown --watch",
|
|
12
|
-
"start": "node dist/cli.
|
|
12
|
+
"start": "node dist/cli.mjs",
|
|
13
13
|
"lint": "eslint src",
|
|
14
14
|
"format": "prettier --write src",
|
|
15
15
|
"format:check": "prettier --check src",
|
|
16
|
-
"test": "vitest run",
|
|
17
|
-
"test:
|
|
16
|
+
"test": "npm run build && vitest run",
|
|
17
|
+
"test:e2e": "npm run build && vitest run test/e2e.test.ts",
|
|
18
|
+
"test:coverage": "vitest run --coverage --exclude test/e2e.test.ts"
|
|
18
19
|
},
|
|
19
20
|
"dependencies": {
|
|
20
21
|
"commander": "^14.0.3",
|