Skip to content

Commit

Permalink
style: Format package.json with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
shrink committed Nov 30, 2024
1 parent 5af6db5 commit 64fd190
Show file tree
Hide file tree
Showing 3 changed files with 196 additions and 22 deletions.
4 changes: 3 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
{}
{
"plugins": ["prettier-plugin-packagejson"]
}
175 changes: 173 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 20 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,31 @@
{
"name": "@handles-net/handles-server",
"version": "0.1.0",
"description": "Verify Bluesky handles.",
"keywords": [
"bluesky",
"bsky",
"handles"
],
"homepage": "https://handles.net",
"bugs": {
"url": "https://github.com/prompt/handles-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prompt/handles-server"
},
"license": "MIT",
"main": "dist/index.js",
"bin": "bin/index.js",
"license": "MIT",
"scripts": {
"build": "npx tsc",
"dev": "npx ts-node index.ts",
"lint": "npx prettier . --write && npx eslint .",
"validate": "npx --package typescript tsc --noEmit",
"fmt": "npm run lint && npm run validate",
"lint": "npx prettier . --write && npx eslint .",
"package": "npx ncc build index.ts -o bin && npx pkg bin/index.js --output ./builds/handles-server",
"test": "npx jest",
"package": "npx ncc build index.ts -o bin && npx pkg bin/index.js --output ./builds/handles-server"
"validate": "npx --package typescript tsc --noEmit"
},
"dependencies": {
"pg": "^8.13.1",
Expand All @@ -30,24 +44,11 @@
"pino-pretty": "^13.0.0",
"pkg": "^5.8.1",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.6",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"description": "Verify Bluesky handles.",
"keywords": [
"bluesky",
"bsky",
"handles"
],
"repository": {
"type": "git",
"url": "git+https://github.com/prompt/handles-server"
},
"bugs": {
"url": "https://github.com/prompt/handles-server/issues"
},
"homepage": "https://github.com/prompt/handles-server"
}
}

0 comments on commit 64fd190

Please sign in to comment.