@typeonce/effect-machine 0.1.0 → 0.3.0

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/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@typeonce/effect-machine",
3
- "version": "0.1.0",
3
+ "version": "0.3.0",
4
4
  "description": "Schema-first state machines and statecharts for Effect",
5
5
  "author": "Sandro Maglione",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "https://github.com/typeonce-dev/effect-machine.git"
8
+ "url": "git+https://github.com/typeonce-dev/effect-machine.git"
9
9
  },
10
10
  "bugs": {
11
11
  "url": "https://github.com/typeonce-dev/effect-machine/issues"
@@ -16,6 +16,7 @@
16
16
  "sideEffects": false,
17
17
  "files": [
18
18
  "dist",
19
+ "docs",
19
20
  "README.md",
20
21
  "LICENSE",
21
22
  "NOTICE"
@@ -39,23 +40,6 @@
39
40
  "access": "public",
40
41
  "provenance": true
41
42
  },
42
- "scripts": {
43
- "build": "tsc -p tsconfig.build.json",
44
- "test": "vitest run",
45
- "test:types": "tstyche",
46
- "typecheck": "tsc -p tsconfig.json --noEmit",
47
- "format": "prettier --write .",
48
- "format:check": "prettier --check .",
49
- "sync:effect": "node scripts/sync-effect.mjs",
50
- "sync:check": "node scripts/sync-effect.mjs --check",
51
- "test:sync": "node scripts/test-sync.mjs",
52
- "test:consumer": "node scripts/test-consumer.mjs",
53
- "pack:check": "node scripts/pack-check.mjs",
54
- "check": "pnpm format:check && pnpm typecheck && pnpm build && pnpm test && pnpm test:types && pnpm test:consumer && pnpm test:sync && pnpm pack:check",
55
- "changeset": "changeset",
56
- "version-packages": "changeset version",
57
- "release": "pnpm build && pnpm publish --access public --provenance"
58
- },
59
43
  "peerDependencies": {
60
44
  "effect": "4.0.0-beta.102"
61
45
  },
@@ -63,14 +47,28 @@
63
47
  "@changesets/cli": "2.31.0",
64
48
  "@effect/vitest": "4.0.0-beta.102",
65
49
  "@types/node": "25.7.0",
50
+ "dprint": "0.55.2",
66
51
  "effect": "4.0.0-beta.102",
67
- "prettier": "3.8.1",
68
52
  "tstyche": "7.2.1",
69
53
  "typescript": "6.0.3",
70
54
  "vitest": "4.1.10"
71
55
  },
72
- "packageManager": "pnpm@10.17.1",
73
56
  "engines": {
74
57
  "node": ">=20"
58
+ },
59
+ "scripts": {
60
+ "build": "tsc -p tsconfig.build.json",
61
+ "test": "vitest run",
62
+ "test:types": "tstyche",
63
+ "typecheck": "tsc -p tsconfig.json --noEmit",
64
+ "perf:types": "pnpm build && node scripts/type-performance.mjs",
65
+ "format": "dprint fmt",
66
+ "format:check": "dprint check",
67
+ "test:consumer": "node scripts/test-consumer.mjs",
68
+ "pack:check": "node scripts/pack-check.mjs",
69
+ "check": "pnpm format:check && pnpm typecheck && pnpm build && pnpm test && pnpm test:types && pnpm test:consumer && pnpm pack:check",
70
+ "changeset": "changeset",
71
+ "version-packages": "changeset version",
72
+ "release": "pnpm build && changeset publish"
75
73
  }
76
- }
74
+ }