-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.77 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.77 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
{
"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/src/index.ts",
"dev": "turbo watch tsc",
"prepare": "husky",
"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": "setup-packages && oxfmt . --no-error-on-unmatched-pattern",
"pretest": "yarn tsc && oxlint && oxfmt --check . && eslint .",
"test": "vitest --run packages && turbo test",
"tsc": "turbo tsc && tsc -p tsconfig.json"
},
"nano-staged": {
"*.{js,mjs,cjs,ts,mts,cts,jsx,tsx,json}": "yarn oxfmt --no-error-on-unmatched-pattern",
"*.m?[jt]sx?": [
"yarn oxlint --fix",
"yarn eslint --fix"
]
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@lerna-lite/cli": "^4.9.2",
"@lerna-lite/publish": "^4.9.2",
"@repo/tsconfig": "workspace:*",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.39.1",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-oxlint": "^1.28.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"isolate-monorepo-package": "workspace:*",
"nano-staged": "^0.9.0",
"oxfmt": "^0.15.0",
"oxlint": "^1.28.0",
"setup-packages": "workspace:*",
"turbo": "^2.6.1",
"type-fest": "^5.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"vitest": "^3.2.4"
},
"packageManager": "yarn@4.11.0+sha512.4e54aeace9141df2f0177c266b05ec50dc044638157dae128c471ba65994ac802122d7ab35bcd9e81641228b7dcf24867d28e750e0bcae8a05277d600008ad54",
"engines": {
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
}
}