Files
express-twtkpr/dist/package.json
2026-03-17 22:49:38 -04:00

82 lines
2.5 KiB
JSON

{
"name": "express-twtkpr",
"version": "0.8.0",
"description": "An express library for hosting and maintaining a twtxt.txt file.",
"license": "MIT",
"author": {
"name": "Eric Woodward",
"email": "hey@itsericwoodward.com",
"url": "https://www.itsericwoodward.com"
},
"repository": {
"type": "git",
"url": "https://git.itsericwoodward.com/eric/express-twtkp"
},
"keywords": [],
"type": "module",
"main": "./dist/src/index.js",
"module": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"start": "node --env-file=.env dist/index-app.js",
"build": "tsc && cp -r src/client dist/src",
"dev": "DEBUG='twtkpr:*' tsx watch --env-file=.env src/index-app.ts",
"get:hash": "tsx --env-file=.env src/cli.ts get-hash",
"lint": "eslint --fix src test",
"prepublishOnly": "yarn build",
"set:user": "tsx --env-file=.env src/cli.ts set-user",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@cacheable/node-cache": "^2.0.2",
"@exodus/blakejs": "^1.1.1-exodus.0",
"base32.js": "^0.1.0",
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"dayjs": "^1.11.20",
"debug": "^4.4.3",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"express-session": "^1.19.0",
"express-slow-down": "^3.1.0",
"formidable": "^3.5.4",
"jsonwebtoken": "^9.0.3",
"link": "^2.1.2",
"session-file-store": "^1.5.0",
"twtxt-lib": "^0.9.4",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/formidable": "^3.5.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^25.5.0",
"@types/supertest": "^7.2.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-security": "^4.0.0",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"packageManager": "yarn@4.13.0"
}