2024-09-17 00:16:00 -07:00
|
|
|
{
|
|
|
|
"name": "cohost-wc",
|
|
|
|
"private": true,
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Web component to render cohost posts",
|
|
|
|
"main": "cohost-wc.js",
|
|
|
|
"module": "cohost-wc.js",
|
|
|
|
"type": "module",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"build:watch": "tsc --watch",
|
|
|
|
"lint": "npm run lint:lit-analyzer && npm run lint:eslint",
|
|
|
|
"lint:eslint": "eslint 'src/**/*.ts'",
|
|
|
|
"lint:lit-analyzer": "lit-analyzer",
|
|
|
|
"format": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --write",
|
2024-09-18 17:42:01 -07:00
|
|
|
"serve": "concurrently \"tsc --watch\" \"wds --watch\"",
|
2024-09-17 00:16:00 -07:00
|
|
|
"serve:prod": "MODE=prod npm run serve"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"lit": "^3.2.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@web/dev-server": "^0.4.6",
|
|
|
|
"@webcomponents/webcomponentsjs": "^2.8.0",
|
2024-09-18 17:42:01 -07:00
|
|
|
"concurrently": "^9.0.1",
|
2024-09-17 00:16:00 -07:00
|
|
|
"eslint": "^9.10.0",
|
|
|
|
"lit-analyzer": "^2.0.3",
|
|
|
|
"prettier": "^3.3.3",
|
|
|
|
"typescript": "^5.6.2"
|
|
|
|
},
|
|
|
|
"customElements": "custom-elements.json"
|
|
|
|
}
|