@l-v-yonsama/multi-platform-database-drivers 0.1.185 → 0.1.187

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 (1) hide show
  1. package/package.json +5 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@l-v-yonsama/multi-platform-database-drivers",
3
- "version": "0.1.185",
3
+ "version": "0.1.187",
4
4
  "description": "multi-platform database drivers in TypeScript.",
5
5
  "engines": {
6
6
  "node": ">= 16"
@@ -23,15 +23,18 @@
23
23
  "rimraf": "~3.0",
24
24
  "ts-jest": "~29.0",
25
25
  "tsutils": "~3.21",
26
+ "typedoc": "^0.25.1",
27
+ "typedoc-plugin-markdown": "^3.16.0",
26
28
  "typescript": "~4.9"
27
29
  },
28
30
  "scripts": {
29
31
  "start": "node built/src/index.js",
30
32
  "clean": "rimraf coverage built tmp",
31
33
  "prebuild": "npm run lint",
34
+ "doc": "typedoc --cleanOutputDir --excludePrivate --plugin typedoc-plugin-markdown --out doc src",
32
35
  "build": "npm run clean && tsc -p tsconfig.json",
33
36
  "build:watch": "npm run clean && tsc -w -p tsconfig.json",
34
- "build:release": "npm run clean && tsc -p tsconfig.release.json",
37
+ "build:release": "npm run clean && tsc -p tsconfig.release.json && npm run doc",
35
38
  "prepublishOnly": "npm run build:release",
36
39
  "lint": "eslint . --ext .ts --ext .mts",
37
40
  "lint:fix": "eslint --fix . --ext .ts --ext .mts",