🎉 setup project with hono

This commit is contained in:
Rose 2024-04-23 19:52:10 -04:00
parent ead9d18b3d
commit 114c9f93d4
No known key found for this signature in database
11 changed files with 3332 additions and 0 deletions

39
package.json Normal file
View file

@ -0,0 +1,39 @@
{
"name": "fixbluesky",
"private": true,
"packageManager": "yarn@4.1.1",
"volta": {
"node": "21.7.3",
"yarn": "4.1.1"
},
"type": "module",
"main": "./dist/main.js",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
"import": {
"types": "./dist/main.d.ts"
}
},
"scripts": {
"dev": "tsx ./src/main.ts",
"lint": "biome ci ./src/**/*",
"build": "pkgroll"
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@types/node": "20.12.7",
"pkgroll": "2.0.2",
"tsx": "4.7.2",
"typescript": "5.4.5"
},
"dependencies": {
"@atproto/api": "0.12.5",
"@hono/node-server": "1.11.0",
"hono": "4.2.7"
}
}