nyanoblog/package.json

37 lines
959 B
JSON
Raw Normal View History

2022-12-01 01:07:28 +01:00
{
"name": "nyanoblog",
"version": "0.1.0",
"description": "A hackable next generation microblogging server",
"type": "module",
"private": true,
"main": "index.js",
"scripts": {
"start": "scripts/dev-server.js",
"start:tsc": "tsc --watch",
"start:server": "web-dev-server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
2022-12-04 21:58:30 +01:00
"url": "https://git.bsd.gay/nyanogang/nyanoblog.git"
2022-12-01 01:07:28 +01:00
},
"author": "anna <owo@fef.moe>",
"license": "AGPL-3.0",
"devDependencies": {
2022-12-14 01:02:24 +01:00
"@lit/localize-tools": "^0.6.5",
2022-12-01 01:07:28 +01:00
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@web/dev-server": "^0.1.35",
"eslint": "^8.28.0",
"rollup": "^3.5.0",
"typescript": "^4.9.3"
},
"dependencies": {
2022-12-14 01:02:24 +01:00
"@lit/localize": "^0.11.4",
2022-12-16 03:33:02 +01:00
"@reduxjs/toolkit": "^1.9.1",
2022-12-14 00:48:49 +01:00
"bootstrap-icons": "^1.10.2",
2022-12-01 01:07:28 +01:00
"lit": "^2.4.1",
"redux": "^4.2.0"
}
}