@buildplease/core 1.0.1 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +13 -11
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # @buildplease/core
2
2
 
3
- Core contains the shared application primitives used across BuildPlease: dependency injection, errors, validation, localization, formatting, operations, security helpers, utilities, and Node.js infrastructure.
3
+ Core is the shared foundation for BuildPlease applications. It provides framework-independent application primitives used by the other BuildPlease kits.
4
4
 
5
- ## Install
5
+ ## Installation
6
6
 
7
7
  ```bash
8
8
  pnpm add @buildplease/core
@@ -16,15 +16,17 @@ import { coreAssembly } from '@buildplease/core';
16
16
  const assemblies = coreAssembly();
17
17
  ```
18
18
 
19
- Node.js-specific utilities are available from `@buildplease/core/node`.
19
+ Node.js-specific APIs are available from `@buildplease/core/node`.
20
20
 
21
- ## What’s included
21
+ ## Features
22
22
 
23
- - dependency injection and assemblies
24
- - validation and error primitives
25
- - L10n and localization
26
- - formatters, converters, models, and operations
27
- - mutex and security utilities
28
- - Node.js logging, environment, file, and package helpers
23
+ - dependency injection and application assemblies
24
+ - operations, models, converters, and formatters
25
+ - errors, validation, and normalization primitives
26
+ - L10n resources and localization helpers
27
+ - security, synchronization, and general utilities
28
+ - Node.js infrastructure helpers
29
29
 
30
- Part of [BuildPlease](https://github.com/BuildPlease/buildplease).
30
+ ## License
31
+
32
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buildplease/core",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "keywords": [],
5
5
  "repository": {
6
6
  "type": "git",
@@ -57,8 +57,8 @@
57
57
  "pino-pretty": "13.1.3"
58
58
  },
59
59
  "devDependencies": {
60
- "@types/ms": "2.1.0",
61
- "@buildplease/identity": "1.0.0"
60
+ "@buildplease/identity": "1.0.0",
61
+ "@types/ms": "2.1.0"
62
62
  },
63
63
  "peerDependencies": {
64
64
  "inversify": "8.2.3",