-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
100 lines (100 loc) · 2.3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@inquirer/root",
"private": true,
"keywords": [
"answer",
"answers",
"ask",
"base",
"cli",
"command",
"command-line",
"confirm",
"enquirer",
"generate",
"generator",
"hyper",
"input",
"inquire",
"inquirer",
"interface",
"iterm",
"javascript",
"menu",
"node",
"nodejs",
"prompt",
"promptly",
"prompts",
"question",
"readline",
"scaffold",
"scaffolder",
"scaffolding",
"stdin",
"stdout",
"terminal",
"tty",
"ui",
"yeoman",
"yo",
"zsh"
],
"repository": {
"type": "git",
"url": "https://github.com/SBoudrias/Inquirer.js.git"
},
"license": "MIT",
"author": "Simon Boudrias <admin@simonboudrias.com>",
"type": "module",
"workspaces": [
"packages/*",
"integration/*",
"internals/*"
],
"scripts": {
"demo": "node --watch-path=packages/ packages/demo/",
"dev": "turbo watch tsc",
"prepare": "husky && turbo tsc attw",
"setup": "node ./tools/setup-packages.mjs",
"pretest": "turbo tsc && eslint . && yarn tsc:test",
"test": "vitest --run packages && node --test integration/**/*.test.*",
"tsc": "turbo tsc",
"tsc:test": "tsc -p tsconfig.json"
},
"lint-staged": {
"*": "yarn prettier --write --ignore-unknown",
"*.m?[jt]sx?": "yarn eslint --fix"
},
"resolutions": {
"type-fest": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@repo/hoist-peer-dependencies": "workspace:*",
"@repo/tsconfig": "workspace:*",
"@types/node": "^22.8.0",
"@vitest/coverage-v8": "^2.1.3",
"@vitest/ui": "^2.1.3",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^56.0.0",
"globals": "^15.11.0",
"globby": "^14.0.2",
"husky": "^9.1.6",
"lerna": "^8.1.8",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"turbo": "^2.2.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vitest": "^2.1.3"
},
"packageManager": "yarn@4.5.0+sha512.837566d24eec14ec0f5f1411adb544e892b3454255e61fdef8fd05f3429480102806bac7446bc9daff3896b01ae4b62d00096c7e989f1596f2af10b927532f39",
"engines": {
"node": ">=18"
}
}