@fest-lib/object 0.1.2 → 0.1.5

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 (3) hide show
  1. package/README.md +9 -10
  2. package/dist/object.js +623 -611
  3. package/package.json +5 -4
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.2",
4
+ "version": "0.1.5",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "sideEffects": false,
@@ -40,7 +40,7 @@
40
40
  "./package.json": "./package.json"
41
41
  },
42
42
  "peerDependencies": {
43
- "@fest-lib/core": "^0.1.0"
43
+ "@fest-lib/core": ">=0.1.0"
44
44
  },
45
45
  "scripts": {
46
46
  "test": "npm run test:node && npm run test:deno && npm run test:browser",
@@ -56,7 +56,8 @@
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 install -D typedoc typedoc-plugin-markdown && npm audit fix && npm run build && npm publish --access public",
59
+ "release": "PUPPETEER_SKIP_DOWNLOAD=1 npm run build:publish && npm publish --access public --ignore-scripts",
60
+ "publish": "npm run release",
60
61
  "docs": "typedoc ./src/index.ts --options ./typedoc.json --out ./docs --tsconfig ./tsconfig.json --excludeExternals --excludePrivate --excludeProtected --skipErrorChecking",
61
62
  "docs:clean": "rm -rf ./docs && typedoc --options ./typedoc.json",
62
63
  "docs:md": "typedoc --options ./typedoc.md.json",
@@ -75,6 +76,6 @@
75
76
  "vite-plugin-optimizer": ">=1.4.3"
76
77
  },
77
78
  "dependencies": {
78
- "@fest-lib/core": "^0.1.0"
79
+ "@fest-lib/core": ">=0.1.0"
79
80
  }
80
81
  }