inquirer-grouped-checkbox 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "inquirer-grouped-checkbox",
3
+ "version": "0.1.0",
4
+ "description": "A searchable, grouped checkbox prompt for Inquirer.js",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ }
19
+ }
20
+ },
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsup",
26
+ "dev": "tsup --watch",
27
+ "demo": "tsx demo/index.ts",
28
+ "test": "vitest",
29
+ "test:once": "vitest run",
30
+ "typecheck": "tsc --noEmit",
31
+ "lint": "pnpm run typecheck && eslint . --fix && pnpm run format",
32
+ "format": "prettier . --list-different --write",
33
+ "check-format": "prettier . --list-different",
34
+ "check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
35
+ "ci": "pnpm build && pnpm check-exports && pnpm test:once",
36
+ "prepublishOnly": "pnpm build"
37
+ },
38
+ "keywords": [
39
+ "inquirer",
40
+ "checkbox",
41
+ "grouped",
42
+ "prompt",
43
+ "cli"
44
+ ],
45
+ "author": "Craig Patik",
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "https://github.com/patik/inquirer-grouped-checkbox.git"
49
+ },
50
+ "license": "MIT",
51
+ "packageManager": "pnpm@10.24.0",
52
+ "peerDependencies": {
53
+ "@inquirer/core": ">=10.0.0"
54
+ },
55
+ "dependencies": {
56
+ "@inquirer/figures": "^1.0.0"
57
+ },
58
+ "devDependencies": {
59
+ "@arethetypeswrong/cli": "^0.18.2",
60
+ "@eslint/js": "^9.39.2",
61
+ "@inquirer/testing": "^2.0.0",
62
+ "@inquirer/type": "^3.0.0",
63
+ "@types/node": "^25.0.3",
64
+ "@vitest/ui": "^4.0.16",
65
+ "eslint": "^9.39.2",
66
+ "eslint-config-prettier": "^10.1.8",
67
+ "eslint-plugin-prettier": "^5.5.4",
68
+ "prettier": "^3.7.4",
69
+ "tsup": "^8.0.0",
70
+ "tsx": "^4.21.0",
71
+ "typescript": "^5.9.3",
72
+ "typescript-eslint": "^8.50.1",
73
+ "vitest": "^4.0.16"
74
+ }
75
+ }