-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
128 lines (128 loc) · 3.89 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "vue-virtualised",
"version": "0.2.0",
"private": false,
"description": "Vue components developed by Vue.js 3.0 for efficiently rendering large scrollable lists and hierarchical data. vue-virtualised is able to render and update 1 million nodes within a few seconds in front-end.",
"author": {
"name": "Junxiang Chen",
"email": "[email protected]",
"url": "https://github.com/FallingCeilingS"
},
"types": "dist/index.d.ts",
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run build:umd && npm run build:es && npm run build:browser && tsc-alias",
"lint": "vue-cli-service lint",
"build:browser": "rollup --config build/rollup.config.browser.js",
"build:es": "rollup --config build/rollup.config.es.js",
"build:umd": "rollup --config build/rollup.config.umd.js",
"lib": "vue-cli-service build --target lib --name vue-virtualised --dest lib ./src/index.ts",
"prepublishOnly": "npm run lint && npm run build"
},
"main": "dist/vue-virtualised.umd.js",
"module": "dist/vue-virtualised.esm.js",
"unpkg": "dist/vue-virtualised.min.js",
"dependencies": {
"core-js": "^3.6.5",
"fbjs": "^3.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/eslint-parser": "^7.12.17",
"@babel/eslint-plugin": "^7.12.13",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@microsoft/api-extractor": "^7.15.0",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"@types/fbjs": "^3.0.0",
"@types/lodash": "^4.14.168",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^4.15.1",
"@vue/cli-plugin-babel": "~5.0.0-alpha.7",
"@vue/cli-plugin-eslint": "~5.0.0-alpha.7",
"@vue/cli-plugin-typescript": "~5.0.0-alpha.8",
"@vue/cli-service": "^5.0.0-beta.6",
"@vue/compiler-sfc": "^3.0.10",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"autoprefixer": "^10.2.5",
"babel-eslint": "^10.1.0",
"babel-plugin-lodash": "^3.3.4",
"clean-css": "^5.1.2",
"eslint": "^8.0.1",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.0.0-0",
"fbjs-scripts": "3.0.0",
"prettier": "^2.2.1",
"rollup": "^2.44.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0-beta.10",
"tsc-alias": "^1.2.10",
"tslib": "^2.1.0",
"ttypescript": "^1.5.12",
"typescript": "^4.2.3",
"typescript-transform-paths": "^2.2.3",
"vue": "^3.2.20"
},
"peerDependencies": {
"vue": "^3.2.20"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/typescript"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"bugs": {
"url": "https://github.com/FallingCeilingS/vue-virtualised/issues"
},
"contributors": [
{
"name": "Zhuoru Li",
"email": "[email protected]",
"url": "https://github.com/hepesu"
}
],
"homepage": "https://github.com/FallingCeilingS/vue-virtualised#readme",
"keywords": [
"vue",
"vue3",
"vuejs",
"components",
"front-end",
"virtual-scroller",
"virtualization",
"virtualisation",
"virtualized",
"virtualised"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/FallingCeilingS/vue-virtualised"
}
}