-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.72 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "regisseur",
"description": "CLI utility to help running manual workflows by prompting the user for a confirmation at each step.",
"homepage": "https://github.com/HiDeoo/regisseur",
"version": "0.1.0",
"author": "HiDeoo",
"license": "MIT",
"bin": "./cli.mjs",
"type": "module",
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"test": "vitest",
"test:coverage": "vitest run --coverage && open coverage/index.html",
"lint": "prettier -c . && eslint . --max-warnings=0 && tsc --noEmit",
"prepare": "husky install",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"cac": "6.7.12",
"hjson": "3.2.2",
"kolorist": "1.5.1",
"simple-git": "3.11.0",
"tiny-glob": "0.2.9",
"zod": "3.17.10",
"zod-error": "1.0.3"
},
"devDependencies": {
"@hideoo/eslint-config": "0.4.0",
"@hideoo/prettier-config": "0.1.0",
"@hideoo/tsconfig": "0.1.0",
"@types/hjson": "2.4.3",
"@types/node": "16.11.46",
"c8": "7.12.0",
"eslint": "8.20.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"typescript": "4.7.4",
"unbuild": "0.7.6",
"vitest": "0.19.1"
},
"files": [
"cli.mjs",
"dist"
],
"packageManager": "pnpm@7.5.0",
"sideEffects": false,
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"cli",
"workflow",
"manual",
"step",
"prompt",
"confirmation"
],
"bugs": {
"url": "https://github.com/HiDeoo/regisseur/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/HiDeoo/regisseur"
},
"prettier": "@hideoo/prettier-config",
"lint-staged": {
"**/*": "prettier -w -u --cache",
"**/*.ts": "eslint --max-warnings=0"
}
}