-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "render-big-data",
"version": "0.4.1",
"license": "MIT",
"description": "A web component support big amount data list with high render performance and efficient.",
"type": "module",
"main": "./dist/cjs/lib/index",
"module": "./dist/es/lib/index",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"exports": {
"types": "./dist/types/index.d.ts",
"import": "./dist/es/lib/index",
"default": "./dist/cjs/lib/index"
},
"keywords": [
"web component",
"big-data",
"big-list",
"scroll-list",
"virtual-list",
"vue",
"react",
"angular",
"svelte"
],
"author": "buzhifanji",
"bugs": {
"url": "https://github.com/Buzhifanji/render-big-data/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Buzhifanji/render-big-data.git"
},
"homepage": "https://github.com/Buzhifanji/render-big-data#readme",
"scripts": {
"dev": "vite --mode development",
"build": "rimraf -rf dist && vite build --mode production",
"build:demo": "rimraf -rf demo && vite build --mode demo",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.1.0",
"@tsconfig/svelte": "^3.0.0",
"mockjs": "^1.1.0",
"rimraf": "^3.0.2",
"rollup-plugin-delete": "^2.0.0",
"svelte": "^3.52.0",
"svelte-check": "^2.9.2",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"vite": "^3.2.3",
"vite-plugin-dts": "^1.7.1"
}
}