forked from rocwang/vue-virtual-scroll-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.87 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": "vue-virtual-scroll-grid",
"author": "Roc Wong <[email protected]> (https://kiwiberry.nz/)",
"repository": {
"type": "git",
"url": "https://github.com/rocwang/vue-virtual-scroll-grid.git"
},
"keywords": [
"vue",
"windowing",
"virtual scroll",
"grid"
],
"bugs": {
"url": "https://github.com/rocwang/vue-virtual-scroll-grid/issues"
},
"homepage": "https://grid.kiwiberry.nz/",
"files": [
"dist"
],
"module": "./dist/index.es.js",
"main": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
}
},
"license": "MIT",
"scripts": {
"gen:types": "vue-tsc --declaration --emitDeclarationOnly --skipLibCheck",
"serve": "vite preview",
"build": "vite build && npm run gen:types",
"build:demo": "vite build --mode demo",
"dev": "vite",
"lint": "vue-tsc --noEmit --skipLibCheck",
"test": "jest",
"preversion": "npm run lint && npm test",
"version": "npm run build",
"postversion": "npm publish --dry-run",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"vue": "^3.2.33"
},
"dependencies": {
"@vueuse/core": "^9.1.1",
"ramda": ">=0.28.0",
"rxjs": "^7.5.1"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^18.7.15",
"@types/ramda": ">=0.28.13",
"@vitejs/plugin-vue": "^4.0.0",
"algoliasearch": "^4.13.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"lodash-es": "^4.17.21",
"prettier": "^2.6.1",
"semantic-release": "^20.1.0",
"ts-jest": "^29.0.3",
"typescript": "^4.7.2",
"vite": "^4.0.0",
"vue": "^3.2.41",
"vue-tsc": ">=1.0.9"
},
"engines": {
"node": ">=14"
},
"volta": {
"node": "19.6.0",
"npm": "9.4.1"
}
}