@timestamp-js/core 0.1.0-alpha.0 → 0.1.0-alpha.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.
- package/README.md +13 -0
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -54,6 +54,19 @@ The library relies on standard JavaScript runtime APIs such as `Date` and `Intl.
|
|
|
54
54
|
|
|
55
55
|
For deterministic SSR output, prefer passing explicit timestamps into helpers instead of calling `today()` during render. `today()` intentionally uses the host runtime clock and timezone.
|
|
56
56
|
|
|
57
|
+
## Documentation
|
|
58
|
+
|
|
59
|
+
The project includes a Q-Press documentation site under `packages/docs`.
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
pnpm docs:dev
|
|
63
|
+
pnpm docs:build
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Workspace Layout
|
|
67
|
+
|
|
68
|
+
The publishable package lives in `packages/lib` so the repository follows the same predictable workspace shape as the sibling projects. The root package is private and only coordinates shared scripts, dependency installation, verification, and docs builds.
|
|
69
|
+
|
|
57
70
|
## Current Scope
|
|
58
71
|
|
|
59
72
|
- Parse date strings and ISO-like date-time strings into Timestamp objects.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@timestamp-js/core",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.1",
|
|
4
4
|
"description": "Framework-agnostic Timestamp utility.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"calendar",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"url": "https://github.com/hawkeye64/timestamp/issues"
|
|
15
15
|
},
|
|
16
16
|
"license": "MIT",
|
|
17
|
+
"author": "Jeff <galbraith64@gmail.com>",
|
|
17
18
|
"repository": {
|
|
18
19
|
"type": "git",
|
|
19
20
|
"url": "git+https://github.com/hawkeye64/timestamp.git"
|
|
@@ -43,6 +44,10 @@
|
|
|
43
44
|
"typescript": "6.0.3",
|
|
44
45
|
"vitest": "4.1.8"
|
|
45
46
|
},
|
|
47
|
+
"engines": {
|
|
48
|
+
"node": ">=22.13",
|
|
49
|
+
"pnpm": ">=11.5.0"
|
|
50
|
+
},
|
|
46
51
|
"scripts": {
|
|
47
52
|
"build": "tsc -p tsconfig.build.json",
|
|
48
53
|
"format": "oxfmt",
|