clean up for deployment

This commit is contained in:
2025-08-20 09:43:10 -04:00
parent ab17c0b044
commit 9d054e6817
2 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@techniker-me/csv", "name": "@techniker-me/csv",
"version": "0.0.0", "version": "0.0.1",
"module": "src/index.ts", "module": "src/index.ts",
"type": "module", "type": "module",
@@ -39,5 +39,6 @@
"prettier": "3.6.2", "prettier": "3.6.2",
"typescript": "5.9.2", "typescript": "5.9.2",
"typescript-eslint": "8.40.0" "typescript-eslint": "8.40.0"
} },
"files": ["dist"]
} }

View File

@@ -11,8 +11,7 @@ export type {
} from "./types"; } from "./types";
export { CsvDialect } from "./dialect"; export { CsvDialect } from "./dialect";
export { CsvRowTokenizer } from "./parser/CsvRowTokenizer";
export { CsvParser } from "./parser/CsvParser";
export { StringChunkSource } from "./sources/StringSource"; export { StringChunkSource } from "./sources/StringSource";
export { FileChunkSource } from "./sources/FileSource"; export { FileChunkSource } from "./sources/FileSource";