SnapAPI/package.json
Hoid 2eca4e700b
All checks were successful
Build & Deploy to Staging / Build & Deploy to Staging (push) Successful in 9m43s
fix: read version from package.json, bump to 0.6.0, remove signup/free from OpenAPI spec
2026-02-26 11:06:08 +00:00

40 lines
1,009 B
JSON

{
"name": "snapapi",
"version": "0.6.0",
"description": "URL to Screenshot API — PNG, JPEG, WebP via simple REST API",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"compression": "^1.8.1",
"express": "^4.21.0",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"nanoid": "^5.0.0",
"pg": "^8.13.0",
"pino": "^10.3.1",
"puppeteer": "^24.0.0",
"stripe": "^17.0.0",
"swagger-jsdoc": "^6.2.8"
},
"devDependencies": {
"@types/compression": "^1.8.1",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/pg": "^8.0.0",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@vitest/ui": "^4.0.18",
"supertest": "^7.2.2",
"tsx": "^4.0.0",
"typescript": "^5.6.0",
"vitest": "^4.0.18"
}
}