-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1 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
{
"name": "xjs-cli",
"version": "1.4.1",
"description": "Xpresser Framework Cli",
"main": "cli.js",
"bin": {
"xjs": "./cli.js",
"xjs-cli": "./cli.js",
"xjs-await": "./cli-await.js"
},
"scripts": {
"watch": "npx tsc --watch",
"prepublishOnly": "npx tsc"
},
"engines": {
"node": ">=16"
},
"keywords": [
"xpresser",
"xpresser-cli",
"xjs",
"xjs-framework",
"cli"
],
"author": "Xpresser",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"cron": "^2.3.1",
"inquirer": "8.2.6",
"object-collection": "^3.0.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/inquirer": "^8.1.3",
"@types/node": "^20.12.12",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xpresserjs/cli.git"
},
"bugs": {
"url": "https://github.com/xpresserjs/cli/issues"
},
"homepage": "https://xpresserjs.com/xjs-cli.html"
}