32 lines
822 B
JSON
32 lines
822 B
JSON
{
|
|
"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",
|
|
"url": "https://git.bsd.gay/nyanogang/nyanoblog.git"
|
|
},
|
|
"author": "anna <owo@fef.moe>",
|
|
"license": "AGPL-3.0",
|
|
"devDependencies": {
|
|
"@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": {
|
|
"lit": "^2.4.1",
|
|
"redux": "^4.2.0"
|
|
}
|
|
}
|