-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 825 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 825 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
{
"name": "xu-command-executor",
"version": "1.0.7",
"description": "Tool to execute commands based on JSON configuration",
"bin": {
"ce": "dist/config-exec.js"
},
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"test": "vitest",
"dev": "node -r source-map-support/register ./dist/config-exec.js",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"commander": "^11.0.0",
"inquirer": "^9.2.10"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^9.0.5",
"@types/node": "^20.4.9",
"@vitest/coverage-v8": "^3.2.4",
"source-map-support": "^0.5.21",
"tsc": "^2.0.4",
"typescript": "^5.2.2",
"vite": "^7.0.4",
"vitest": "^0.34.6"
},
"type": "module",
"files": [
"dist",
"README"
]
}