-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 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
{
"name": "gnhf",
"version": "0.1.23",
"description": "Before I go to bed, I tell my agents: good night, have fun",
"type": "module",
"bin": {
"gnhf": "dist/cli.mjs"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"start": "node dist/cli.mjs",
"lint": "eslint src",
"format": "prettier --write src",
"format:check": "prettier --check src",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"test": "npm run build && vitest run",
"test:e2e": "npm run build && vitest run test/e2e.test.ts",
"test:coverage": "vitest run --coverage --exclude test/e2e.test.ts"
},
"dependencies": {
"commander": "^14.0.3",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"prettier": "^3.0.0",
"tsdown": "^0.21.7",
"typescript": "^5.8.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.2"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/kunchenguid/gnhf"
},
"engines": {
"node": ">=20"
}
}