rename main to index

This commit is contained in:
Jon Staab
2024-03-25 10:30:08 -07:00
parent bd3351d043
commit bb983d8207
2 changed files with 4 additions and 27 deletions
+4 -4
View File
@@ -12,12 +12,12 @@
"type": "git",
"url": "https://github.com/coracle-social/paravel.git"
},
"types": "./build/src/main.d.ts",
"types": "./build/src/index.d.ts",
"exports": {
".": {
"types": "./build/src/main.d.ts",
"import": "./build/src/main.mjs",
"require": "./build/src/main.cjs"
"types": "./build/src/index.d.ts",
"import": "./build/src/index.mjs",
"require": "./build/src/index.cjs"
}
},
"files": [
-23
View File
@@ -1,23 +0,0 @@
export * from "./connect/Connection"
export * from "./connect/ConnectionMeta"
export * from "./connect/Executor"
export * from "./connect/Pool"
export * from "./connect/Socket"
export * from "./connect/Subscription"
export * from "./connect/target/Multi"
export * from "./connect/target/Plex"
export * from "./connect/target/Relay"
export * from "./connect/target/Relays"
export * from "./util/Address"
export * from "./util/Deferred"
export * from "./util/Emitter"
export * from "./util/Events"
export * from "./util/Filters"
export * from "./util/Fluent"
export * from "./util/Kinds"
export * from "./util/LRUCache"
export * from "./util/Queue"
export * from "./util/Relays"
export * from "./util/Router"
export * from "./util/Tags"
export * from "./util/Tools"