@art-suite/art-core-ts 0.2.10 → 0.3.1

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 +2 -0
  2. package/package.json +8 -12
package/README.md CHANGED
@@ -18,6 +18,8 @@ This package combines several specialized libraries, each focusing on a specific
18
18
 
19
19
  - [@art-suite/art-core-ts-time](https://npmjs.com/@art-suite/art-core-ts-time) - Seamless, simple utilities for working with dates, times, and durations. Provides a unified set of utilities for effortless conversion between standard date/time representations, easy formatting, and common calculations like "start of day" or "first of month".
20
20
 
21
+ - [@art-suite/art-core-ts-communication-status](https://npmjs.com/@art-suite/art-core-ts-communication-status) - A simple, consistent library for handling communication status in client-server applications. It reduces the complex space of HTTP status codes and other communication states into a small set of actionable categories that make client-side code simpler and more robust.
22
+
21
23
  - [@art-suite/art-core-ts-comprehensions](https://npmjs.com/@art-suite/art-core-ts-comprehensions) - A powerful and flexible comprehension library that provides a unified interface for working with arrays, objects, and other iterables. Each comprehension function can accept any input container as the source and returns the appropriate type (object, array, or found value).
22
24
 
23
25
  ## Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@art-suite/art-core-ts",
3
- "version": "0.2.10",
3
+ "version": "0.3.1",
4
4
  "description": "The full Art-Core-TS library",
5
5
  "keywords": [],
6
6
  "repository": {
@@ -33,16 +33,12 @@
33
33
  "test:watch": "vitest"
34
34
  },
35
35
  "dependencies": {
36
- "@art-suite/art-core-ts-comprehensions": "^0.1.3",
37
- "@art-suite/art-core-ts-containers": "^0.3.0",
38
- "@art-suite/art-core-ts-json": "^0.2.3",
39
- "@art-suite/art-core-ts-string-case": "^0.1.4",
40
- "@art-suite/art-core-ts-time": "^0.1.6",
41
- "@art-suite/art-core-ts-types": "^0.1.3"
42
- },
43
- "devDependencies": {
44
- "@types/node": "^20.11.24",
45
- "typescript": "^5.3.3",
46
- "vitest": "^3.1.3"
36
+ "@art-suite/art-core-ts-communication-status": "^0.1.0",
37
+ "@art-suite/art-core-ts-comprehensions": "^0.1.4",
38
+ "@art-suite/art-core-ts-containers": "^0.3.1",
39
+ "@art-suite/art-core-ts-json": "^0.3.0",
40
+ "@art-suite/art-core-ts-string-case": "^0.1.5",
41
+ "@art-suite/art-core-ts-time": "^0.1.7",
42
+ "@art-suite/art-core-ts-types": "^0.1.4"
47
43
  }
48
44
  }