-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.42 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
46
47
48
49
50
51
52
{
"name": "lit-grid-layout",
"version": "1.1.15",
"author": "Zack Arnett",
"license": "MIT",
"description": "A Grid Layout for Lit Element",
"keywords": [
"typescript",
"javascript",
"grid",
"layout",
"lit-element"
],
"homepage": "https://github.com/zsarnett/Lit-Grid-Layout",
"repository": "https://github.com/zsarnett/Lit-Grid-Layout",
"bugs": {
"url": "https://github.com/zsarnett/Lit-Grid-Layout/issues",
"email": "[email protected]"
},
"files": [
"dist"
],
"types": "dist/types.d.ts",
"source": "src/lit-grid-layout",
"main": "dist/lit-grid-layout.js",
"module": "dist/lit-grid-layout.js",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "es-dev-server --app-index index.html --node-resolve --watch",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix"
},
"dependencies": {
"deep-clone-simple": "^1.1.1",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
},
"devDependencies": {
"@types/resize-observer-browser": "^0.1.4",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"es-dev-server": "^1.57.8",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"resize-observer-polyfill": "^1.5.1",
"ts-lit-plugin": "^1.2.1",
"typescript": "^4.0.5"
}
}