Compare commits

...

3 Commits

Author SHA1 Message Date
Chris Wanstrath
605528b55e cool name 2026-02-11 16:34:50 -08:00
Chris Wanstrath
ccece90194 0.0.1 2026-02-11 16:34:28 -08:00
Chris Wanstrath
83c58e13b0 npm registry 2026-02-11 16:32:23 -08:00
2 changed files with 8 additions and 3 deletions

1
.npmrc Normal file
View File

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

View File

@ -1,12 +1,16 @@
{ {
"name": "sneaker", "name": "@becuase/sneaker",
"version": "0.0.1",
"description": "http tunnel server and client",
"module": "src/server.tsx", "module": "src/server.tsx",
"type": "module", "type": "module",
"private": true,
"exports": { "exports": {
".": "./src/server.tsx", ".": "./src/server.tsx",
"./client": "./src/client.ts" "./client": "./src/client.ts"
}, },
"files": [
"src"
],
"scripts": { "scripts": {
"dev": "bun --hot src/server.tsx", "dev": "bun --hot src/server.tsx",
"prod": "env NODE_ENV=production bun src/server.tsx", "prod": "env NODE_ENV=production bun src/server.tsx",
@ -22,4 +26,4 @@
"peerDependencies": { "peerDependencies": {
"typescript": "^5" "typescript": "^5"
} }
} }