-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.33 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
{
"name": "react-searchable-dropdown-monorepo",
"version": "0.0.0",
"description": "High performance virtualized React dropdown and combobox. Single and multi select, async search, fuzzy matching, grouping, portal positioning, fully accessible, TypeScript first.",
"keywords": [
"react",
"typescript",
"dropdown",
"combobox",
"select",
"multi-select",
"autocomplete",
"virtualized",
"fuzzy-search",
"async-search",
"accessibility",
"a11y",
"aria",
"react-select-alternative",
"typeahead"
],
"private": true,
"workspaces": ["packages/*"],
"repository": {
"type": "git",
"url": "https://github.com/luciodale/react-searchable-dropdown"
},
"homepage": "https://koolcodez.com/projects/react-searchable-dropdown/",
"scripts": {
"dev": "bun run --filter react-searchable-dropdown-docs dev",
"build": "bun run build:lib && bun run build:docs",
"build:lib": "tsc && vite build -c vite.lib.config.mts",
"build:lib:watch": "vite build -c vite.lib.config.mts --watch",
"build:docs": "bun run --filter react-searchable-dropdown-docs build && cp packages/docs/public/.assetsignore packages/docs/dist/.assetsignore",
"deploy:docs": "bun run --filter react-searchable-dropdown-docs deploy",
"npm": "bun run build:lib && cd packages/library && npm publish --access public",
"npm:test": "bun run build:lib && cd packages/library && npm pack --dry-run",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"unit-tests": "vitest",
"unit-tests:ui": "vitest --ui",
"unit-tests:coverage": "vitest --coverage",
"unit-tests:ci": "vitest run",
"test": "bun run unit-tests:ci",
"test:ci": "bun run unit-tests:ci"
},
"author": "Lucio D'Alessandro",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/autosuggest-highlight": "^3.2.3",
"@types/jsdom": "^21.1.7",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "3.2.4",
"jsdom": "^26.1.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"typescript": "^5.9.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-static-copy": "^3.0.2",
"vitest": "^3.2.4"
}
}