feat(csv): add typed CSV APIs and modernize package configuration

This commit is contained in:
2026-05-02 09:59:16 +00:00
parent c7f1caf47a
commit e840e545f5
14 changed files with 8058 additions and 3981 deletions
+14 -12
View File
@@ -3,27 +3,27 @@
"version": "2.0.2",
"private": false,
"description": "A module for handling CSV data compliant with Gitzone standard.",
"exports": {
".": "./dist_ts/index.js"
},
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH",
"author": "Task Venture Capital GmbH <hello@task.vc>",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild --allowimplicitany)",
"test": "tstest test/",
"build": "tsbuild",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/smartfile": "^10.0.4",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.4"
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsdoc": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
},
"dependencies": {
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartstring": "^4.0.2"
"@push.rocks/smartstring": "^4.1.1"
},
"files": [
"ts/**/*",
@@ -34,6 +34,8 @@
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
"npmextra.json",
"readme.md"
],
@@ -53,4 +55,4 @@
"type": "git",
"url": "https://code.foss.global/push.rocks/smartcsv.git"
}
}
}