Files
express-twtkpr/package.json
Eric Woodward 8658a14200 Move plugins to express-twtkpr-core-plugins package
Add plugin structure
Fix stale cache after posting
Update to v0.9.0
2026-05-12 23:43:26 -04:00

79 lines
2.1 KiB
JSON

{
"name": "express-twtkpr",
"version": "0.9.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-twtkpr"
},
"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": {
"build": "tsc && cp -r src/client dist/src && cp -r src/plugins dist/src",
"get:hash": "tsx --env-file=.env src/cli.ts get-hash",
"lint": "eslint --fix src",
"prepublishOnly": "yarn build",
"set:user": "tsx --env-file=.env src/cli.ts set-user",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@cacheable/node-cache": "^3.0.0",
"@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.5.0",
"express-session": "^1.19.0",
"express-slow-down": "^3.1.0",
"jsonwebtoken": "^9.0.3",
"link": "^2.1.2",
"session-file-store": "^1.5.0",
"twtxt-lib": "^0.10.1",
"uuid": "^14.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/debug": "^4.1.13",
"@types/express": "^5.0.6",
"@types/express-session": "^1.19.0",
"@types/formidable": "^3.5.1",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^25.6.0",
"@types/supertest": "^7.2.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-security": "^4.0.0",
"prettier": "^3.8.3",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
},
"packageManager": "yarn@4.14.1"
}