Files
postplan/package.json
T
joshuafhiggins Verified 8ac7db77fc Replace S3 storage with Docker-mounted filesystem
- Add Docker and Compose deployment with persistent HTML and Postgres volumes
- Remove AWS storage configuration and dependency
- Document local Docker setup and filesystem storage
2026-08-22 00:39:53 -04:00

33 lines
617 B
JSON

{
"name": "postplan",
"version": "0.0.4",
"description": "Static HTML draft publishing for agents.",
"type": "module",
"license": "MIT",
"files": [
"bin/",
"src/",
"skills/",
"README.md"
],
"bin": {
"postplan": "./bin/postplan.js"
},
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"test": "node --test test/*.test.js"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^14.0.0",
"express": "^5.1.0",
"jose": "^6.2.3",
"nanoid": "^5.1.5",
"parse5": "^7.3.0",
"pg": "^8.16.2"
}
}