This commit is contained in:
Chris Wanstrath 2026-01-29 18:35:17 -08:00
parent 3954663270
commit 9d0391beaa
2 changed files with 10 additions and 3 deletions

1
.npmrc Normal file
View File

@ -0,0 +1 @@
registry=https://npm.nose.space

View File

@ -1,8 +1,14 @@
{
"name": "howl",
"module": "index.tsx",
"name": "@_because/howl",
"version": "0.1.0",
"module": "src/index.tsx",
"type": "module",
"exports": "./src/index.tsx",
"files": [
"src",
"!src/**/*.test.*",
"README.md"
],
"scripts": {
"dev": "bun run --hot test/server.tsx"
},