@fest-lib/object 0.1.0 → 0.1.2
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.
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fest-lib/object",
|
|
3
3
|
"description": "Reactive object utilities and helpers (fest-lib)",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"sideEffects": false,
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"build:publish": "FEST_NPM_IMPORTS=1 vite build --config vite.config.js",
|
|
57
57
|
"prepack": "npm run build:publish",
|
|
58
58
|
"preview": "vite preview",
|
|
59
|
-
"publish": "npm publish --access public",
|
|
59
|
+
"publish": "npm install -D typedoc typedoc-plugin-markdown && npm audit fix && npm run build && npm publish --access public",
|
|
60
60
|
"docs": "typedoc ./src/index.ts --options ./typedoc.json --out ./docs --tsconfig ./tsconfig.json --excludeExternals --excludePrivate --excludeProtected --skipErrorChecking",
|
|
61
61
|
"docs:clean": "rm -rf ./docs && typedoc --options ./typedoc.json",
|
|
62
62
|
"docs:md": "typedoc --options ./typedoc.md.json",
|
|
@@ -66,10 +66,15 @@
|
|
|
66
66
|
"@puppeteer/browsers": "^2.13.0",
|
|
67
67
|
"@types/node": ">=22.8.1",
|
|
68
68
|
"puppeteer": "^24.42.0",
|
|
69
|
+
"typedoc": "^0.28.20",
|
|
70
|
+
"typedoc-plugin-markdown": "^4.12.0",
|
|
69
71
|
"typescript": ">=6.0.0-beta",
|
|
70
72
|
"vite": "^8.0.7",
|
|
71
73
|
"vite-plugin-dynamic-import": ">=1.6.0",
|
|
72
74
|
"vite-plugin-external": ">=6.2.2",
|
|
73
75
|
"vite-plugin-optimizer": ">=1.4.3"
|
|
76
|
+
},
|
|
77
|
+
"dependencies": {
|
|
78
|
+
"@fest-lib/core": "^0.1.0"
|
|
74
79
|
}
|
|
75
80
|
}
|