@rxova/journey-core 1.0.0-rc.2 → 1.0.0-rc.3

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 (1) hide show
  1. package/package.json +22 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxova/journey-core",
3
- "version": "1.0.0-rc.2",
3
+ "version": "1.0.0-rc.3",
4
4
  "description": "Journey core state machine.",
5
5
  "keywords": [
6
6
  "journey",
@@ -11,7 +11,21 @@
11
11
  "typescript",
12
12
  "graph",
13
13
  "finite-state",
14
- "workflow"
14
+ "workflow",
15
+ "journey-machine",
16
+ "multi-step-form",
17
+ "multi-step",
18
+ "onboarding",
19
+ "checkout-flow",
20
+ "branching",
21
+ "guards",
22
+ "transitions",
23
+ "history",
24
+ "time-travel",
25
+ "zero-dependency",
26
+ "vanilla-js",
27
+ "framework-agnostic",
28
+ "state-management"
15
29
  ],
16
30
  "homepage": "https://github.com/rxova/journey",
17
31
  "bugs": {
@@ -145,14 +159,17 @@
145
159
  "limit": "2 kB"
146
160
  }
147
161
  ],
162
+ "devDependencies": {
163
+ "@arethetypeswrong/cli": "^0.18.5",
164
+ "publint": "^0.3.18"
165
+ },
148
166
  "scripts": {
149
167
  "build": "pnpm run clean && node --import tsx ./scripts/build.ts && tsc -p tsconfig.build.json && node --import tsx ../../scripts/copy-types.ts dist",
150
168
  "clean": "node --import tsx ../../scripts/clean-paths.ts dist tsconfig.build.tsbuildinfo",
151
169
  "coverage": "pnpm --workspace-root vitest run --coverage --coverage.include=packages/core/src/** --coverage.reporter=text-summary",
152
170
  "typecheck": "tsc --noEmit -p tsconfig.json",
153
- "publint": "publint",
171
+ "check:exports": "publint --strict",
154
172
  "attw": "attw --pack .",
155
- "size": "pnpm run size:check",
156
- "size:check": "pnpm run build && size-limit"
173
+ "size": "size-limit"
157
174
  }
158
175
  }