-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.84 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.84 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
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
101
102
103
104
{
"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/dist/esm/index.js",
"dev": "turbo watch tsc",
"prepare": "husky && turbo tsc attw",
"prepack": "find packages/* -maxdepth 1 -type f -name 'README*' -exec sed -i '' -e 's/utm_source=github/utm_source=npmjs/g' {} + && find packages/* -maxdepth 1 -type f -name package.json -exec sh -c 'jq \".devDependencies |= with_entries(select(.value != \\\"workspace:*\\\"))\" \"$1\" > \"$1.tmp\" && mv \"$1.tmp\" \"$1\"' _ {} \\;",
"postpack": "git restore packages/*/package.json packages/*/README.md",
"setup": "node ./tools/setup-packages.ts && prettier --write . --log-level=silent",
"pretest": "yarn tsc && oxlint && prettier --check . && eslint .",
"test": "vitest --run packages && turbo test",
"tsc": "turbo tsc && tsc -p tsconfig.json"
},
"nano-staged": {
"*": "yarn prettier --write --ignore-unknown --no-error-on-unmatched-pattern",
"*.m?[jt]sx?": [
"yarn oxlint --fix",
"yarn eslint --fix"
]
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@repo/hoist-peer-dependencies": "workspace:*",
"@repo/tsconfig": "workspace:*",
"@types/node": "^24.9.1",
"@types/semver": "^7",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-oxlint": "^1.7.0",
"globals": "^16.4.0",
"globby": "^15.0.0",
"husky": "^9.1.7",
"isolate-monorepo-package": "workspace:*",
"lerna": "^9.0.0",
"nano-staged": "^0.8.0",
"oxlint": "^1.7.0",
"prettier": "^3.6.2",
"semver": "^7.7.3",
"turbo": "^2.5.8",
"type-fest": "^5.1.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vitest": "^3.2.4"
},
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f",
"engines": {
"node": ">=18"
}
}