cohost-wc/package.json

42 lines
1.4 KiB
JSON
Raw Permalink Normal View History

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",
"serve": "concurrently \"tsc --watch\" \"wds --watch\"",
"serve:prod": "MODE=prod npm run serve",
"rollup": "rollup -c",
"publish:dev": "rsync -avuz --delete build/ web@dev.xtil.net:/home/web/static/cohost-web-component.meow.garden/",
"publish:prod": "rsync -avuz --delete build/ web@xtil.net:/home/web/static/cohost-web-component.meow.garden/"
2024-09-17 00:16:00 -07:00
},
"dependencies": {
"lit": "^3.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
2024-09-17 00:16:00 -07:00
"@web/dev-server": "^0.4.6",
"@web/rollup-plugin-copy": "^0.5.1",
"@web/rollup-plugin-html": "^2.3.0",
2024-09-17 00:16:00 -07:00
"@webcomponents/webcomponentsjs": "^2.8.0",
"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",
"rollup": "^4.22.0",
"rollup-plugin-summary": "^2.0.1",
2024-09-17 00:16:00 -07:00
"typescript": "^5.6.2"
},
"customElements": "custom-elements.json"
}