forked from SBoudrias/Inquirer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.2 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
{
"private": true,
"type": "module",
"name": "@inquirer/root",
"author": "Simon Boudrias <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]+sha256.2535167e742927e1d2a1610d5004576e4e8f764d2ca5470d19536790f55cd6e2",
"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"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@eslint/js": "^9.7.0",
"@sindresorhus/tsconfig": "^6.0.0",
"@types/node": "^20.14.11",
"@vitest/coverage-v8": "^2.0.3",
"@vitest/ui": "^2.0.3",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^54.0.0",
"globals": "^15.8.0",
"globby": "^14.0.2",
"husky": "^9.1.1",
"lerna": "^8.1.7",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"turbo": "^2.0.9",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1",
"vitest": "^2.0.3"
},
"resolutions": {
"type-fest": "^4.0.0"
},
"workspaces": [
"packages/*",
"integration/*"
],
"scripts": {
"prepare": "husky && turbo tsc attw",
"setup": "node ./tools/setup-packages.mjs",
"pretest": "eslint . && turbo tsc && yarn tsc:test",
"test": "vitest --run packages && node --test integration/**/*.test.*",
"dev": "turbo watch tsc",
"demo": "node --watch-path=packages/ packages/demo/",
"tsc": "turbo tsc",
"tsc:test": "tsc -p tsconfig.test.json"
},
"repository": {
"type": "git",
"url": "https://github.com/SBoudrias/Inquirer.js.git"
},
"lint-staged": {
"*": "yarn prettier --write",
"*.m?[jt]sx?": "yarn eslint --fix"
}
}