-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.96 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 1.96 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
82
83
84
85
86
87
88
89
{
"name": "@honestjs/cli",
"description": "CLI tool for scaffolding honestjs projects",
"version": "0.1.14",
"author": "Orkhan Karimov <karimovok1@gmail.com> (https://github.com/kerimovok)",
"repository": {
"type": "git",
"url": "git+https://github.com/honestjs/cli.git"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"type": "module",
"bin": {
"honestjs": "./dist/index.js",
"honest": "./dist/index.js",
"hnjs": "./dist/index.js"
},
"dependencies": {
"@bluwy/giget-core": "^0.1.6",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"consola": "^3.4.2",
"fs-extra": "^11.3.4",
"minimatch": "^10.2.4",
"pluralize": "^8.0.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.10",
"@types/fs-extra": "^11.0.4",
"@types/pluralize": "^0.0.33",
"@types/prompts": "^2.4.9",
"eslint": "^10.0.3",
"vitest": "^4.1.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"typescript-eslint": "^8.57.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/honestjs/cli",
"keywords": [
"nodejs",
"bun",
"javascript",
"typescript",
"node",
"framework",
"cli",
"honestjs",
"scaffolding",
"templates",
"generator"
],
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"clean": "rm -rf dist",
"prepare": "husky",
"build": "bun run clean && bun build index.ts --outdir=dist --target=node --minify",
"dev": "bun run index.ts",
"start": "bun run dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"lint-staged": {
"**/*.{js,mjs,cjs,ts,mts,cts}": [
"eslint --fix",
"prettier --write"
]
}
}