|
1 | 1 | { |
2 | | - "name": "vue-select", |
3 | | - "version": "4.0.0-beta.6", |
4 | | - "description": "Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.", |
5 | | - "author": "Jeff Sagal <sagalbot@gmail.com>", |
6 | | - "homepage": "https://vue-select.org", |
7 | | - "directories": { |
8 | | - "doc": "docs", |
9 | | - "test": "tests" |
| 2 | + "name": "vue3-select", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.", |
| 5 | + "author": "Howard Chen <howard.tzw@gmail.com>, Jeff Sagal <sagalbot@gmail.com>", |
| 6 | + "homepage": "https://vue-select.org", |
| 7 | + "directories": { |
| 8 | + "doc": "docs", |
| 9 | + "test": "tests" |
| 10 | + }, |
| 11 | + "files": [ |
| 12 | + "dist" |
| 13 | + ], |
| 14 | + "main": "./dist/vue-select.umd.js", |
| 15 | + "module": "./dist/vue-select.es.js", |
| 16 | + "exports": { |
| 17 | + ".": { |
| 18 | + "import": "./dist/vue-select.es.js", |
| 19 | + "require": "./dist/vue-select.umd.js" |
10 | 20 | }, |
11 | | - "files": [ |
12 | | - "dist" |
13 | | - ], |
14 | | - "main": "./dist/vue-select.umd.js", |
15 | | - "module": "./dist/vue-select.es.js", |
16 | | - "exports": { |
17 | | - ".": { |
18 | | - "import": "./dist/vue-select.es.js", |
19 | | - "require": "./dist/vue-select.umd.js" |
20 | | - }, |
21 | | - "./dist/vue-select.css": { |
22 | | - "import": "./dist/vue-select.css", |
23 | | - "require": "./dist/vue-select.css", |
24 | | - "style": "./dist/vue-select.css" |
25 | | - } |
26 | | - }, |
27 | | - "private": false, |
28 | | - "license": "MIT", |
29 | | - "prepare": "npm run build", |
30 | | - "scripts": { |
31 | | - "dev:docs": "cd docs && yarn serve", |
32 | | - "build:docs": "cd docs && yarn build", |
33 | | - "semantic-release": "semantic-release", |
34 | | - "commit": "git-cz", |
35 | | - "dev": "vite", |
36 | | - "build": "vue-tsc --noEmit && vite build", |
37 | | - "preview": "vite preview --port 5050", |
38 | | - "test": "vitest --environment jsdom", |
39 | | - "coverage": "vitest --run --coverage --environment jsdom --silent", |
40 | | - "typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", |
41 | | - "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore" |
42 | | - }, |
43 | | - "repository": { |
44 | | - "type": "git", |
45 | | - "url": "https://github.com/sagalbot/vue-select.git" |
46 | | - }, |
47 | | - "peerDependencies": { |
48 | | - "vue": "3.x" |
49 | | - }, |
50 | | - "devDependencies": { |
51 | | - "@rushstack/eslint-patch": "^1.1.4", |
52 | | - "@semantic-release/git": "^10.0.1", |
53 | | - "@semantic-release/github": "^8.0.5", |
54 | | - "@types/jsdom": "^16.2.14", |
55 | | - "@types/node": "^18.0.5", |
56 | | - "@vitejs/plugin-vue": "^3.0.0", |
57 | | - "@vue/eslint-config-prettier": "^7.0.0", |
58 | | - "@vue/eslint-config-typescript": "^11.0.0", |
59 | | - "@vue/test-utils": "^2.0.2", |
60 | | - "@vue/tsconfig": "^0.1.3", |
61 | | - "autoprefixer": "^10.4.7", |
62 | | - "bundlewatch": "^0.3.3", |
63 | | - "c8": "^7.11.3", |
64 | | - "commitizen": "^4.2.5", |
65 | | - "coveralls": "^3.1.1", |
66 | | - "cross-env": "^7.0.3", |
67 | | - "cz-conventional-changelog": "3.3.0", |
68 | | - "eslint": "^8.20.0", |
69 | | - "eslint-plugin-vue": "^9.2.0", |
70 | | - "jsdom": "^20.0.0", |
71 | | - "postcss-nested": "^5.0.6", |
72 | | - "prettier": "^2.7.1", |
73 | | - "semantic-release": "^19.0.3", |
74 | | - "typescript": "^4.7.4", |
75 | | - "vite": "^3.0.0", |
76 | | - "vitest": "^0.18.1", |
77 | | - "vue": "^3.2.37", |
78 | | - "vue-tsc": "^0.38.8" |
79 | | - }, |
80 | | - "config": { |
81 | | - "commitizen": { |
82 | | - "path": "./node_modules/cz-conventional-changelog" |
83 | | - } |
84 | | - }, |
85 | | - "bundlewatch": { |
86 | | - "files": [ |
87 | | - { |
88 | | - "path": "./dist/vue-select.es.js", |
89 | | - "compression": "gzip", |
90 | | - "maxSize": "8 KB" |
91 | | - }, |
92 | | - { |
93 | | - "path": "./dist/vue-select.umd.js", |
94 | | - "compression": "gzip", |
95 | | - "maxSize": "7 KB" |
96 | | - }, |
97 | | - { |
98 | | - "path": "./dist/vue-select.css", |
99 | | - "compression": "gzip", |
100 | | - "maxSize": "2 KB" |
101 | | - } |
102 | | - ] |
| 21 | + "./dist/vue-select.css": { |
| 22 | + "import": "./dist/vue-select.css", |
| 23 | + "require": "./dist/vue-select.css", |
| 24 | + "style": "./dist/vue-select.css" |
103 | 25 | } |
| 26 | + }, |
| 27 | + "private": false, |
| 28 | + "license": "MIT", |
| 29 | + "prepare": "npm run build", |
| 30 | + "scripts": { |
| 31 | + "dev:docs": "cd docs && yarn serve", |
| 32 | + "build:docs": "cd docs && yarn build", |
| 33 | + "semantic-release": "semantic-release", |
| 34 | + "commit": "git-cz", |
| 35 | + "dev": "vite", |
| 36 | + "build": "vue-tsc --noEmit && vite build", |
| 37 | + "preview": "vite preview --port 5050", |
| 38 | + "test": "vitest --environment jsdom", |
| 39 | + "coverage": "vitest --run --coverage --environment jsdom --silent", |
| 40 | + "typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", |
| 41 | + "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore" |
| 42 | + }, |
| 43 | + "repository": { |
| 44 | + "type": "git", |
| 45 | + "url": "https://github.com/sagalbot/vue-select.git" |
| 46 | + }, |
| 47 | + "peerDependencies": { |
| 48 | + "vue": "3.x" |
| 49 | + }, |
| 50 | + "devDependencies": { |
| 51 | + "@rushstack/eslint-patch": "^1.1.4", |
| 52 | + "@semantic-release/git": "^10.0.1", |
| 53 | + "@semantic-release/github": "^8.0.5", |
| 54 | + "@types/jsdom": "^16.2.14", |
| 55 | + "@types/node": "^18.0.5", |
| 56 | + "@vitejs/plugin-vue": "^3.0.0", |
| 57 | + "@vue/eslint-config-prettier": "^7.0.0", |
| 58 | + "@vue/eslint-config-typescript": "^11.0.0", |
| 59 | + "@vue/test-utils": "^2.0.2", |
| 60 | + "@vue/tsconfig": "^0.1.3", |
| 61 | + "autoprefixer": "^10.4.7", |
| 62 | + "bundlewatch": "^0.3.3", |
| 63 | + "c8": "^7.11.3", |
| 64 | + "commitizen": "^4.2.5", |
| 65 | + "coveralls": "^3.1.1", |
| 66 | + "cross-env": "^7.0.3", |
| 67 | + "cz-conventional-changelog": "3.3.0", |
| 68 | + "eslint": "^8.20.0", |
| 69 | + "eslint-plugin-vue": "^9.2.0", |
| 70 | + "jsdom": "^20.0.0", |
| 71 | + "postcss-nested": "^5.0.6", |
| 72 | + "prettier": "^2.7.1", |
| 73 | + "semantic-release": "^19.0.3", |
| 74 | + "typescript": "^4.7.4", |
| 75 | + "vite": "^3.0.0", |
| 76 | + "vitest": "^0.18.1", |
| 77 | + "vue": "^3.2.37", |
| 78 | + "vue-tsc": "^0.38.8" |
| 79 | + }, |
| 80 | + "config": { |
| 81 | + "commitizen": { |
| 82 | + "path": "./node_modules/cz-conventional-changelog" |
| 83 | + } |
| 84 | + }, |
| 85 | + "bundlewatch": { |
| 86 | + "files": [ |
| 87 | + { |
| 88 | + "path": "./dist/vue-select.es.js", |
| 89 | + "compression": "gzip", |
| 90 | + "maxSize": "8 KB" |
| 91 | + }, |
| 92 | + { |
| 93 | + "path": "./dist/vue-select.umd.js", |
| 94 | + "compression": "gzip", |
| 95 | + "maxSize": "7 KB" |
| 96 | + }, |
| 97 | + { |
| 98 | + "path": "./dist/vue-select.css", |
| 99 | + "compression": "gzip", |
| 100 | + "maxSize": "2 KB" |
| 101 | + } |
| 102 | + ] |
| 103 | + } |
104 | 104 | } |
0 commit comments