initial version (alpha)

This commit is contained in:
Danny Morabito 2025-10-12 13:10:06 -05:00
commit d16d7a128f
Signed by: dannym
GPG key ID: 7CC8056A5A04557E
57 changed files with 11087 additions and 0 deletions

30
package.json Normal file
View file

@ -0,0 +1,30 @@
{
"name": "eve-lite",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"configure-hooks": "git config core.hooksPath .githooks",
"test": "bun test",
"test:watch": "bun test --watch"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@types/bun": "^1.2.23",
"preact": "^10.27.2",
"prism-svelte": "^0.5.0",
"prismjs": "^1.30.0"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"@dicebear/collection": "^9.2.4",
"@dicebear/core": "^9.2.4",
"@noble/ciphers": "^1.3.0",
"@scure/base": "^2.0.0",
"bun-plugin-tailwind": "^0.0.15",
"daisyui": "^5.1.25",
"nostr-tools": "^2.17.0"
}
}