@fest-lib/object 0.1.4 → 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 (2) hide show
  1. package/README.md +9 -10
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -405,16 +405,15 @@ Legacy function for creating reactive Sets.
405
405
 
406
406
  ## Modules
407
407
 
408
- - [core/Assigned](docs/core/Assigned/README.md) - Assignment and binding utilities
409
- - [core/Legacy](docs/core/Legacy/README.md) - Legacy compatibility functions
410
- - [core/Mainline](docs/core/Mainline/README.md) - Core subscription and reactivity system
411
- - [core/Primitives](docs/core/Primitives/README.md) - Primitive reactive references
412
- - [core/Specific](docs/core/Specific/README.md) - Specific object type handlers
413
- - [core/Subscript](docs/core/Subscript/README.md) - Subscription registry system
414
- - [index](docs/index/README.md) - Main exports
415
- - [wrap/AssignObject](docs/wrap/AssignObject/README.md) - Object assignment proxy
416
- - [wrap/Symbol](docs/wrap/Symbol/README.md) - Internal symbols and triggers
417
- - [wrap/Utils](docs/wrap/Utils/README.md) - Utility functions and types
408
+ - [core/Assigned](src/core/Assigned.ts) - Assignment and binding utilities
409
+ - [core/Mainline](src/core/Mainline.ts) - Core subscription and reactivity system
410
+ - [core/Primitives](src/core/Primitives.ts) - Primitive reactive references
411
+ - [core/Specific](src/core/Specific.ts) - Specific object type handlers
412
+ - [core/Subscript](src/core/Subscript.ts) - Subscription registry system
413
+ - [index](src/index.ts) - Main exports
414
+ - [wrap/AssignObject](src/wrap/AssignObject.ts) - Object assignment proxy
415
+ - [wrap/Symbol](src/wrap/Symbol.ts) - Internal symbols and triggers
416
+ - [wrap/Utils](src/wrap/Utils.ts) - Utility functions and types
418
417
 
419
418
  ---
420
419
 
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",
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": "github:fest-live/core.ts#main"
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": "github:fest-live/core.ts#main"
79
+ "@fest-lib/core": ">=0.1.0"
79
80
  }
80
81
  }