-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "svelte-datatable",
"version": "2.1.1",
"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": "^9.0.5"
},
"peerDependencies": {
"svelte": "3.x"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^3.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.35.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"serve": "^14.1.1",
"svelte": "^3.8.1"
},
"scripts": {
"build": "rollup -c",
"dev": "npm-run-all --parallel watch start",
"start": "serve public",
"watch": "rollup -c -w"
}
}