forked from Kiho/svelte-datatable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 995 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 995 Bytes
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
{
"name": "svelte-datatable",
"version": "2.0.2",
"description": "Datatable for Svelte with Materialize",
"author": "Kiho Chang",
"private": false,
"main": "./src/main.js",
"license": "MIT",
"keywords": [
"Svelte",
"Datatable",
"Materialize",
"Table Component"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Kiho/svelte-datatable.git"
},
"dependencies": {
"fuse.js": "^3.4.4",
"immer": "^3.1.1"
},
"peerDependencies": {
"svelte": "3.x"
},
"devDependencies": {
"npm-run-all": "^4.1.3",
"rollup": "^1.11.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^5.1.1",
"rollup-watch": "^4.3.1",
"serve": "^11.1.0",
"svelte": "^3.8.1"
},
"scripts": {
"build": "rollup -c",
"dev": "npm-run-all --parallel watch start",
"start": "serve public",
"watch": "rollup -c -w"
}
}