-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 770 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 770 Bytes
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
{
"name": "dalhe-cli",
"version": "0.1.7",
"description": "CLI para iniciar projetos com arquivos base do Dalhe.",
"author": "Alex Ishida <alexishida@gmail.com>",
"license": "MIT",
"keywords": [
"cli",
"dalhe",
"scaffold",
"template",
"bootstrap",
"project-init"
],
"type": "module",
"bin": {
"dalhe": "bin/dalhe.js"
},
"files": [
"bin",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alexishida/dalhe-cli.git"
},
"homepage": "https://github.com/alexishida/dalhe-cli",
"bugs": {
"url": "https://github.com/alexishida/dalhe-cli/issues"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "node ./bin/dalhe.js",
"test": "node --test"
}
}