Initial checkin.

This commit is contained in:
Arthur Evans
2019-12-03 17:05:21 -08:00
commit 387a753d1f
8 changed files with 4105 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "lit-element-starter-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "lit-analyzer my-element.ts && tsc",
"build:watch": "lit-analyzer my-element.ts && tsc --watch",
"start": "es-dev-server --app-index demo.html --node-resolve --watch --open"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"es-dev-server": "^1.23.1",
"lit-analyzer": "^1.1.9",
"typescript": "^3.7.2"
},
"dependencies": {
"lit-element": "^2.2.1"
}
}