-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
77 lines (77 loc) · 1.99 KB
/
package.json
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
72
73
74
75
76
77
{
"name": "v-selectpage",
"description": "SelectPage for Vue, a select items components provides the list of items with pagination",
"version": "3.0.1",
"author": "TerryZ <[email protected]>",
"type": "module",
"files": [
"/dist",
"/types"
],
"main": "./dist/v-selectpage.umd.cjs",
"module": "./dist/v-selectpage.js",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/v-selectpage.js"
},
"require": "./dist/v-selectpage.umd.cjs"
}
},
"typings": "types/index.d.ts",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173",
"test:unit": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"dts": "npx -p typescript tsc src/index.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"dts:vue": "vue-tsc --declaration --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "https://github.com/TerryZ/v-selectpage.git"
},
"keywords": [
"front-end",
"javascript",
"vue",
"selector",
"table-view",
"i18n",
"pagination",
"tags",
"multiple"
],
"peerDependencies": {
"vue": "^3.2.0"
},
"dependencies": {
"v-dropdown": "3.0.0",
"vue": "^3.3.7"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.5.1",
"@vitejs/plugin-vue": "^4.4.0",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"@vitest/coverage-v8": "^0.34.6",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.16",
"bootstrap": "^5.3.2",
"eslint": "^8.52.0",
"eslint-plugin-vue": "^9.18.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.31",
"sass": "^1.69.5",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vitest": "^0.34.6",
"vue-router": "^4.2.5",
"vue-tsc": "^1.8.22"
}
}