-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 KB
/
package.json
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
{
"name": "celf-cli",
"version": "0.0.3",
"description": "Cellinlab's self-developed CLI (Command-Line Interface), used for rapid development.",
"main": "index.js",
"bin": {
"ccli": "./bin/ccli.js"
},
"scripts": {
"build": "node ./bin/build.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"celf-cli",
"cli",
"command-line",
"command-line-interface",
"command-line-tool",
"indiedev",
"indiedevkit"
],
"author": "cellinlab",
"repository": {
"type": "git",
"url": "git+https://github.com/cellinlab/celf-cli.git"
},
"homepage": "https://celf-cli.cellinlab.com/",
"license": "MIT",
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"vitepress": "1.0.0-beta.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"chalk": "^4.1.2",
"clear": "^0.1.0",
"commander": "^11.0.0",
"download-git-repo": "^3.0.2",
"figlet": "^1.6.0",
"inquirer": "^8.2.5",
"minimist": "^1.2.8",
"ora": "^5.4.1",
"util": "^0.12.5"
}
}