web-csv-toolbox 0.0.0-next-20231225164603 → 0.0.0-next-20231225175011

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/index.d.ts +1 -1
  2. package/package.json +5 -3
package/lib/index.d.ts CHANGED
@@ -139,7 +139,7 @@ interface ParseBinaryOptions<Header extends ReadonlyArray<string>>
139
139
  * CSV Record.
140
140
  * @template Header Header of the CSV.
141
141
  *
142
- * @example Header is `["foo", "bar"]`
142
+ * @example Header is ["foo", "bar"]
143
143
  * ```ts
144
144
  * const record: CSVRecord<["foo", "bar"]> = {
145
145
  * foo: "1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-csv-toolbox",
3
- "version": "0.0.0-next-20231225164603",
3
+ "version": "0.0.0-next-20231225175011",
4
4
  "description": "A CSV Toolbox utilizing Web Standard APIs.",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -21,6 +21,7 @@
21
21
  "README.md"
22
22
  ],
23
23
  "scripts": {
24
+ "doc": "typedoc",
24
25
  "test": "vitest",
25
26
  "format": "biome format . --write",
26
27
  "lint": "biome lint .",
@@ -49,7 +50,7 @@
49
50
  "@biomejs/biome": "1.4.1",
50
51
  "@changesets/changelog-github": "^0.5.0",
51
52
  "@changesets/cli": "^2.27.1",
52
- "@fast-check/vitest": "^0.0.8",
53
+ "@fast-check/vitest": "^0.0.9",
53
54
  "husky": "^8.0.0",
54
55
  "jsdom": "^23.0.1",
55
56
  "lint-staged": "^15.2.0",
@@ -57,7 +58,8 @@
57
58
  "rollup-plugin-delete": "^2.0.0",
58
59
  "rollup-plugin-dts": "^6.1.0",
59
60
  "rollup-plugin-typescript2": "^0.36.0",
61
+ "typedoc": "^0.25.4",
60
62
  "typescript": "^5.3.2",
61
63
  "vitest": "^1.1.0"
62
64
  }
63
- }
65
+ }