-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "vue-typed-virtual-list",
"version": "1.0.10",
"description": "A small, efficient, easy-to-use virtual list for Vue 3",
"author": {
"name": "Brian Simon",
"email": "oss@brianesimon.com",
"url": "https://github.com/bsssshhhhhhh"
},
"keywords": [
"vue",
"virtual-list"
],
"license": "Apache-2.0",
"repository": "https://github.com/bsssshhhhhhh/vue-typed-virtual-list",
"scripts": {
"build": "tsc && vite build",
"lint": "eslint src",
"dev": "cypress open --component --browser chrome"
},
"devDependencies": {
"@types/debounce": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/test-utils": "^2.2.6",
"cypress": "^12.2.0",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-base-typescript": "^1.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.8.0",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.26.2",
"vue": "^3.2.45"
},
"peerDependencies": {
"vue": "^3.2.45"
},
"dependencies": {
"@vueuse/core": "^9.9.0",
"debounce": "^1.2.1"
},
"type": "module",
"module": "dist/vue-typed-virtual-list.js",
"types": "dist/main.d.ts",
"files": [
"README.md",
"dist"
]
}