28 lines
720 B
JSON
28 lines
720 B
JSON
{
|
|
"name": "lit-element-starter-ts",
|
|
"version": "0.0.0",
|
|
"description": "A simple web component",
|
|
"main": "my-element.js",
|
|
"module": "my-element.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "lit-analyzer && tsc",
|
|
"build:watch": "tsc --watch",
|
|
"serve": "es-dev-server --app-index demo/index.html --node-resolve --watch --open",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"web component", "lit-element", "typescript"
|
|
],
|
|
"author": "The Polymer Authors",
|
|
"license": "BSD-3-Clause",
|
|
"dependencies": {
|
|
"lit-element": "^2.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"es-dev-server": "^1.23.1",
|
|
"lit-analyzer": "^1.1.9",
|
|
"typescript": "^3.7.2"
|
|
}
|
|
}
|