- metadata_{start_page}_to_{end_page}.json
- /content
- {slug}.html
- /highlights
- {slug}.md
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "@omnivore/export-handler",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "build/src/index.js",
|
|
"files": [
|
|
"build/src"
|
|
],
|
|
"keywords": [],
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"test": "yarn mocha -r ts-node/register --config mocha-config.json",
|
|
"test:typecheck": "tsc --noEmit",
|
|
"lint": "eslint src --ext ts,js,tsx,jsx",
|
|
"compile": "tsc",
|
|
"build": "tsc",
|
|
"start": "functions-framework --target=exportHandler",
|
|
"dev": "concurrently \"tsc -w\" \"nodemon --watch ./build/ --exec npm run start\""
|
|
},
|
|
"devDependencies": {
|
|
"@types/archiver": "^6.0.2",
|
|
"@types/chai": "^4.3.4",
|
|
"@types/mocha": "^10.0.1",
|
|
"eslint-plugin-prettier": "^4.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@google-cloud/functions-framework": "3.1.2",
|
|
"@google-cloud/storage": "^7.0.1",
|
|
"@omnivore-app/api": "^1.0.4",
|
|
"@omnivore/utils": "1.0.0",
|
|
"@sentry/serverless": "^7.77.0",
|
|
"archiver": "^7.0.1",
|
|
"csv-stringify": "^6.4.0",
|
|
"dotenv": "^16.0.1",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"nodemon": "^2.0.15",
|
|
"uuid": "^8.3.1"
|
|
},
|
|
"volta": {
|
|
"extends": "../../package.json"
|
|
}
|
|
}
|