definitely-fine 0.1.0 → 0.1.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 -2
  2. package/package.json +21 -2
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # definitely-fine
2
2
 
3
- `definitely-fine` is the core package for defining, saving, loading, and activating typed runtime scenarios.
3
+ `definitely-fine` is the core package for defining, saving, loading, and activating typed runtime scenarios in application and end-to-end tests.
4
4
 
5
- It is useful when you want your tests to steer selected application behavior by contract, while the application still executes its normal code paths.
5
+ It lets tests steer selected application behavior by contract while the application still executes its normal route handlers, actions, services, and business logic.
6
6
 
7
7
  ## Installation
8
8
 
package/package.json CHANGED
@@ -1,7 +1,17 @@
1
1
  {
2
2
  "name": "definitely-fine",
3
- "version": "0.1.0",
4
- "description": "Core utilities for the definitely-fine monorepo.",
3
+ "version": "0.1.1",
4
+ "description": "Scenario-driven runtime interception toolkit for app and end-to-end tests.",
5
+ "keywords": [
6
+ "testing",
7
+ "mocking",
8
+ "fixtures",
9
+ "scenarios",
10
+ "interception",
11
+ "playwright",
12
+ "nextjs",
13
+ "hono"
14
+ ],
5
15
  "license": "MIT",
6
16
  "type": "module",
7
17
  "sideEffects": false,
@@ -19,6 +29,15 @@
19
29
  "engines": {
20
30
  "node": ">=22"
21
31
  },
32
+ "homepage": "https://github.com/michalkvasnicak/definitely-fine#readme",
33
+ "bugs": {
34
+ "url": "https://github.com/michalkvasnicak/definitely-fine/issues"
35
+ },
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "git+https://github.com/michalkvasnicak/definitely-fine.git",
39
+ "directory": "packages/definitely-fine"
40
+ },
22
41
  "publishConfig": {
23
42
  "access": "public"
24
43
  },