-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.8 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.8 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
{
"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"
],
"license": "MIT",
"author": "Simon Boudrias <admin@simonboudrias.com>",
"repository": {
"type": "git",
"url": "https://github.com/SBoudrias/Inquirer.js.git"
},
"workspaces": [
"packages/*",
"integration/*",
"internals/*"
],
"type": "module",
"scripts": {
"demo": "node --watch-path=packages/ packages/demo/src/index.ts",
"dev": "turbo watch tsc",
"prepare": "husky",
"prepublishOnly": "yarn tsc",
"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"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@lerna-lite/cli": "^4.9.2",
"@lerna-lite/publish": "^4.9.2",
"@repo/tsconfig": "workspace:*",
"@types/node": "^25.0.2",
"@vitest/coverage-v8": "^4.0.13",
"@vitest/ui": "^4.0.13",
"eslint": "^10.0.3",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-oxlint": "^1.28.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"isolate-monorepo-package": "workspace:*",
"nano-staged": "^0.9.0",
"oxfmt": "^0.40.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": "^4.0.13"
},
"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"
]
},
"engines": {
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
},
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8"
}