forked from gamalielmendez/svelte-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "svelte-data-grid",
"description": "High-performance svelte data table component for displaying huge datasets",
"version": "3.0.1",
"author": {
"name": "Brian Simon",
"email": "bsssshhhhhhh@gmail.com",
"url": "https://github.com/bsssshhhhhhh"
},
"homepage": "https://github.com/bsssshhhhhhh/svelte-data-grid",
"svelte": "src/main.svelte",
"module": "index.mjs",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -wc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.0.1",
"rollup": "^2.17.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-svelte": "^5.1.1",
"svelte": "^3.23.2"
},
"keywords": [
"svelte",
"data-grid",
"data-table",
"table",
"virtual-list"
],
"repository": "bsssshhhhhhh/svelte-data-grid",
"license": "MIT",
"files": [
"src",
"README.md",
"LICENSE.txt"
],
"dependencies": {
"debounce": "^1.2.0",
"deep-diff": "^1.0.2",
"detect-browser": "^5.0.0"
}
}