* add compression * compress carfiles * update package version * add tests * one more test * remove compressible dep * add gzip to appview * fix package.json
82 lines
2.5 KiB
JSON
82 lines
2.5 KiB
JSON
{
|
|
"name": "@atproto/pds",
|
|
"version": "0.1.11",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/bluesky-social/atproto.git",
|
|
"directory": "packages/pds"
|
|
},
|
|
"main": "src/index.ts",
|
|
"bin": "dist/bin.ts",
|
|
"scripts": {
|
|
"codegen": "lex gen-server ./src/lexicon ../../lexicons/com/atproto/*/* ../../lexicons/app/bsky/*/*",
|
|
"build": "node ./build.js",
|
|
"postbuild": "tsc --build tsconfig.build.json",
|
|
"start": "node dist/bin.js",
|
|
"test": "../pg/with-test-db.sh jest",
|
|
"test:sqlite": "jest --testPathIgnorePatterns /tests/proxied/*",
|
|
"test:log": "tail -50 test.log | pino-pretty",
|
|
"test:updateSnapshot": "jest --updateSnapshot",
|
|
"prettier": "prettier --check src/ tests/",
|
|
"prettier:fix": "prettier --write src/ tests/",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"lint:fix": "yarn lint --fix",
|
|
"verify": "run-p prettier lint",
|
|
"verify:fix": "yarn prettier:fix && yarn lint:fix",
|
|
"migration:create": "ts-node ./bin/migration-create.ts",
|
|
"update-main-to-dist": "node ./update-pkg.js --update-main-to-dist",
|
|
"update-main-to-src": "node ./update-pkg.js --update-main-to-src",
|
|
"prepublish": "npm run update-main-to-dist",
|
|
"postpublish": "npm run update-main-to-src"
|
|
},
|
|
"dependencies": {
|
|
"@atproto/api": "*",
|
|
"@atproto/common": "*",
|
|
"@atproto/crypto": "*",
|
|
"@atproto/identifier": "*",
|
|
"@atproto/identity": "*",
|
|
"@atproto/lexicon": "*",
|
|
"@atproto/repo": "*",
|
|
"@atproto/uri": "*",
|
|
"@atproto/xrpc-server": "*",
|
|
"@did-plc/lib": "^0.0.1",
|
|
"better-sqlite3": "^7.6.2",
|
|
"bytes": "^3.1.2",
|
|
"compression": "^1.7.4",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.0.0",
|
|
"express": "^4.17.2",
|
|
"express-async-errors": "^3.1.1",
|
|
"file-type": "^16.5.4",
|
|
"form-data": "^4.0.0",
|
|
"handlebars": "^4.7.7",
|
|
"http-errors": "^2.0.0",
|
|
"http-terminator": "^3.2.0",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"kysely": "^0.22.0",
|
|
"multiformats": "^9.6.4",
|
|
"nodemailer": "^6.8.0",
|
|
"nodemailer-html-to-text": "^3.2.0",
|
|
"p-queue": "^6.6.2",
|
|
"pg": "^8.10.0",
|
|
"pino": "^8.6.1",
|
|
"pino-http": "^8.2.1",
|
|
"sharp": "^0.31.2",
|
|
"typed-emitter": "^2.1.0",
|
|
"uint8arrays": "3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@atproto/api": "*",
|
|
"@atproto/lex-cli": "*",
|
|
"@did-plc/server": "^0.0.1",
|
|
"@types/cors": "^2.8.12",
|
|
"@types/express": "^4.17.13",
|
|
"@types/jsonwebtoken": "^8.5.9",
|
|
"@types/nodemailer": "^6.4.6",
|
|
"@types/pg": "^8.6.6",
|
|
"@types/sharp": "^0.31.0",
|
|
"axios": "^0.27.2"
|
|
}
|
|
}
|