@boba-cli/list 0.1.0-alpha.2

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,49 @@
1
+ {
2
+ "name": "@boba-cli/list",
3
+ "description": "Filterable, selectable list for Boba terminal UIs.",
4
+ "version": "0.1.0-alpha.2",
5
+ "dependencies": {
6
+ "fuzzysort": "2.0.4",
7
+ "@boba-cli/chapstick": "0.1.0-alpha.2",
8
+ "@boba-cli/help": "0.1.0-alpha.2",
9
+ "@boba-cli/key": "0.1.0-alpha.1",
10
+ "@boba-cli/paginator": "0.1.0-alpha.1",
11
+ "@boba-cli/spinner": "0.1.0-alpha.2",
12
+ "@boba-cli/tea": "0.1.0-alpha.1"
13
+ },
14
+ "devDependencies": {
15
+ "typescript": "5.8.2",
16
+ "vitest": "^4.0.16"
17
+ },
18
+ "engines": {
19
+ "node": ">=20.0.0"
20
+ },
21
+ "exports": {
22
+ ".": {
23
+ "import": {
24
+ "types": "./dist/index.d.ts",
25
+ "default": "./dist/index.js"
26
+ },
27
+ "require": {
28
+ "types": "./dist/index.d.cts",
29
+ "default": "./dist/index.cjs"
30
+ }
31
+ },
32
+ "./package.json": "./package.json"
33
+ },
34
+ "files": [
35
+ "dist"
36
+ ],
37
+ "main": "./dist/index.cjs",
38
+ "module": "./dist/index.js",
39
+ "type": "module",
40
+ "types": "./dist/index.d.ts",
41
+ "scripts": {
42
+ "build": "tsup",
43
+ "check:api-report": "pnpm run generate:api-report",
44
+ "check:eslint": "pnpm run lint",
45
+ "generate:api-report": "api-extractor run --local",
46
+ "lint": "eslint \"{src,test}/**/*.{ts,tsx}\"",
47
+ "test": "vitest run"
48
+ }
49
+ }