forked from laichuangwen/e-virt-table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.56 KB
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
{
"name": "e-virt-table",
"private": false,
"version": "1.0.6",
"description": "A powerful data table based on canvas. You can use it as data grid、Microsoft Excel or Google sheets. It supports virtual scroll、cell edit etc.",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"dev": "vite",
"dev:install": "cd docs && npm install",
"dev:docs": "cd docs && npm run dev",
"install:docs": "cd docs && npm install",
"build:docs": "cd docs && npm run build",
"build": "vite build && tsc",
"preview": "vite preview"
},
"license": "MIT",
"author": "laichuangwen",
"keywords": [
"vue",
"react",
"table",
"canvas",
"data",
"grid",
"edit",
"virtual",
"expand",
"fixed",
"selection",
"ellipsis",
"header",
"body",
"excel",
"sheets"
],
"bugs": {
"url": "https://github.com/laichuangwen/e-virt-table/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:laichuangwen/e-virt-table.git"
},
"files": [
"dist"
],
"devDependencies": {
"typescript": "^5.5.3",
"vite": "^5.4.1",
"vite-plugin-css-injected-by-js": "^3.5.2"
},
"dependencies": {
"@floating-ui/dom": "^1.6.11",
"async-validator": "^4.2.5"
}
}