-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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": "@qui-cli/shell",
"version": "3.1.4",
"description": "@qui-cli Plugin: Standardized shelljs wrapper",
"homepage": "https://github.com/battis/qui-cli/tree/main/packages/shell#readme",
"repository": {
"type": "git",
"url": "https://github.com/battis/qui-cli.git",
"directory": "packages/shell"
},
"license": "GPL-3.0",
"author": {
"name": "Seth Battis",
"url": "https://github.com/battis"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "del ./dist",
"build": "run-s build:*",
"build:clean": "run-s clean",
"build:compile": "tsc",
"prepack": "run-s build",
"release": "commit-and-tag-version"
},
"dependencies": {
"ora": "^9.3.0",
"shelljs": "^0.10.0"
},
"devDependencies": {
"@qui-cli/colors": "workspace:*",
"@qui-cli/log": "workspace:*",
"@qui-cli/plugin": "workspace:*",
"@tsconfig/node-lts": "^24.0.0",
"@types/node": "^24.12.2",
"@types/shelljs": "^0.10.0",
"commit-and-tag-version": "^12.7.1",
"del-cli": "^7.0.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@qui-cli/colors": ">=3.2",
"@qui-cli/log": ">=3",
"@qui-cli/plugin": ">=3"
},
"target": "node"
}