forked from sagalbot/vue-select
-
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) · 1.83 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.83 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": "@nextcloud/vue-select",
"version": "4.1.0",
"description": "Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.",
"homepage": "https://github.com/nextcloud-libraries/vue-select",
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud-libraries/vue-select.git"
},
"license": "MIT",
"author": "Jeff Sagal <sagalbot@gmail.com>",
"contributors": [
"Christopher Ng <chrng8@gmail.com>"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite --mode production build",
"build:dev": "vite --mode development build",
"build:docs": "cd docs && npm run build",
"build:preview": "cd docs && npm run build",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"prerelease:format-changelog": "node build/format-changelog.mjs",
"serve": "vite dev --open dev/dev.html",
"serve:docs": "cd docs && npm run serve",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@nextcloud/eslint-config": "^9.0.0-rc.8",
"@nextcloud/vite-config": "^2.5.2",
"@vitest/coverage-v8": "^4.1.2",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.27",
"bundlewatch": "^0.4.1",
"cssnano": "^7.1.4",
"eslint": "^9.39.4",
"jsdom": "^26.1.0",
"vite": "^7.3.1",
"vitest": "^4.1.1",
"vue": "^3.5.31"
},
"peerDependencies": {
"vue": "^3"
},
"engines": {
"node": "^22 || ^24"
},
"bundlewatch": {
"files": [
{
"path": "./dist/index.mjs",
"compression": "none",
"maxSize": "55 KB"
},
{
"path": "./dist/assets/*.css",
"compression": "none",
"maxSize": "8 KB"
}
]
}
}