@stackline/react-multiselect-dropdown 17.0.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": "@stackline/react-multiselect-dropdown",
3
+ "version": "17.0.0",
4
+ "description": "A maintained React 17 multiselect dropdown with controlled state, themes, live docs, and ADA-friendly keyboard support.",
5
+ "keywords": [
6
+ "react",
7
+ "multiselect",
8
+ "dropdown",
9
+ "react-multiselect-dropdown",
10
+ "typescript",
11
+ "forms",
12
+ "checkbox",
13
+ "ui-component",
14
+ "wrapper",
15
+ "maintained"
16
+ ],
17
+ "homepage": "https://alexandro.net/docs/react/multiselect/",
18
+ "bugs": {
19
+ "url": "https://github.com/alexandroit/react-multiselect-dropdown/issues"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/alexandroit/react-multiselect-dropdown.git"
24
+ },
25
+ "license": "MIT",
26
+ "type": "module",
27
+ "files": [
28
+ "dist",
29
+ "README.md",
30
+ "LICENSE"
31
+ ],
32
+ "main": "./dist/index.cjs",
33
+ "module": "./dist/index.js",
34
+ "types": "./dist/index.d.ts",
35
+ "exports": {
36
+ ".": {
37
+ "types": "./dist/index.d.ts",
38
+ "import": "./dist/index.js",
39
+ "require": "./dist/index.cjs"
40
+ }
41
+ },
42
+ "sideEffects": false,
43
+ "scripts": {
44
+ "build": "tsup",
45
+ "clean": "rm -rf dist docs/react-17 docs/react-18 docs/react-19",
46
+ "typecheck": "tsc --noEmit",
47
+ "pack:check": "npm run build && npm pack --dry-run",
48
+ "release:line": "npm run build && node scripts/release-react-line.js",
49
+ "release:sequence": "npm run build && node scripts/release-react-sequence.js",
50
+ "docs:install:react-17": "cd docs-src/react-17 && npm install",
51
+ "docs:install:react-18": "cd docs-src/react-18 && npm install",
52
+ "docs:install:react-19": "cd docs-src/react-19 && npm install",
53
+ "build:docs:react-17": "cd docs-src/react-17 && npm run build",
54
+ "build:docs:react-18": "cd docs-src/react-18 && npm run build",
55
+ "build:docs:react-19": "cd docs-src/react-19 && npm run build",
56
+ "build:docs": "npm run build:docs:react-17",
57
+ "publish:verdaccio:react-17": "npm run build && npm publish --registry=http://127.0.0.1:4873 --@stackline:registry=http://127.0.0.1:4873 --tag react-17 --access public",
58
+ "test": "node --test tests/*.test.cjs"
59
+ },
60
+ "peerDependencies": {
61
+ "react": ">=17.0.0 <18.0.0",
62
+ "react-dom": ">=17.0.0 <18.0.0"
63
+ },
64
+ "publishConfig": {
65
+ "access": "public"
66
+ },
67
+ "devDependencies": {
68
+ "@types/react": "17.0.91",
69
+ "@types/react-dom": "17.0.26",
70
+ "react": "17.0.2",
71
+ "react-dom": "17.0.2",
72
+ "tsup": "8.5.1",
73
+ "typescript": "5.9.3"
74
+ }
75
+ }