-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 907 Bytes
/
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
{
"name": "lit-data-table",
"version": "0.2.1",
"description": "Customizable web component for simple data tables",
"keywords": [
"web components",
"custom components",
"lit",
"data",
"data table",
"javascript",
"typescript",
"esm"
],
"license": "ISC",
"author": "Tao Cumplido",
"repository": "https://github.com/tao-cumplido/lit-data-table",
"bugs": "https://github.com/tao-cumplido/lit-data-table/issues",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"dependencies": {
"lit": "^2.2.6",
"tslib": "~2.4.0"
},
"devDependencies": {
"@typescript-eslint/parser": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.28.0",
"eslint": "8.17.0",
"eslint-plugin-style": "0.2.0",
"prettier": "2.7.1",
"typescript": "4.7.3",
"vite": "2.9.12"
}
}