Initial commit

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Andrew Gundersen 2026-02-25 15:32:58 -05:00
commit 07b274aa27
9 changed files with 190 additions and 0 deletions

19
package.json Normal file
View file

@ -0,0 +1,19 @@
{
"name": "crimata-dns",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"cloudflare": "^3.3.0",
"fastify": "^4.26.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
}
}