@stackline/vue-multiselect-dropdown 2.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/LICENSE +21 -0
- package/README.md +142 -0
- package/dist/index.cjs +2090 -0
- package/dist/index.d.cts +301 -0
- package/dist/index.d.ts +301 -0
- package/dist/index.js +2061 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@stackline/vue-multiselect-dropdown",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "A maintained Vue 2 multiselect dropdown with controlled state, skins, live docs, body overlays, and ADA-friendly keyboard support.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"vue",
|
|
7
|
+
"vue 2",
|
|
8
|
+
"multiselect",
|
|
9
|
+
"multiselect-dropdown",
|
|
10
|
+
"multi-select",
|
|
11
|
+
"dropdown",
|
|
12
|
+
"searchable-dropdown",
|
|
13
|
+
"checkbox-dropdown",
|
|
14
|
+
"stackline",
|
|
15
|
+
"accessibility",
|
|
16
|
+
"aria"
|
|
17
|
+
],
|
|
18
|
+
"homepage": "https://alexandro.net/docs/vue/multiselect/vue-2/",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/alexandroit/vue-multiselect-dropdown/issues"
|
|
21
|
+
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/alexandroit/vue-multiselect-dropdown.git"
|
|
25
|
+
},
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"type": "module",
|
|
28
|
+
"files": [
|
|
29
|
+
"dist",
|
|
30
|
+
"README.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"main": "./dist/index.cjs",
|
|
34
|
+
"module": "./dist/index.js",
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"exports": {
|
|
37
|
+
".": {
|
|
38
|
+
"types": "./dist/index.d.ts",
|
|
39
|
+
"import": "./dist/index.js",
|
|
40
|
+
"require": "./dist/index.cjs"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"sideEffects": false,
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsup",
|
|
46
|
+
"clean": "rm -rf dist docs/vue-2",
|
|
47
|
+
"docs:install:vue-2": "cd docs-src/vue-2 && npm install",
|
|
48
|
+
"build:docs:vue-2": "cd docs-src/vue-2 && npm run build",
|
|
49
|
+
"build:docs": "npm run build:docs:vue-2",
|
|
50
|
+
"publish:verdaccio:vue-2": "npm run build && npm publish --registry=http://127.0.0.1:4873 --@stackline:registry=http://127.0.0.1:4873 --tag vue-2 --access public",
|
|
51
|
+
"typecheck": "tsc --noEmit",
|
|
52
|
+
"test": "node --test tests/*.test.cjs"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"vue": ">=2.0.0 <3.0.0"
|
|
56
|
+
},
|
|
57
|
+
"publishConfig": {
|
|
58
|
+
"access": "public"
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"tsup": "8.5.1",
|
|
62
|
+
"typescript": "5.9.3",
|
|
63
|
+
"vue": "2.0.0"
|
|
64
|
+
}
|
|
65
|
+
}
|