aifsmjs 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/llms-full.txt +14 -0
  2. package/package.json +19 -17
package/llms-full.txt CHANGED
@@ -510,6 +510,20 @@ All notable changes to this project will be documented in this file.
510
510
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
511
511
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
512
512
 
513
+ ## [0.1.1] — 2026-05-28
514
+
515
+ ### Changed
516
+
517
+ - **Release pipeline**: switched to npm OIDC trusted publisher. Releases
518
+ now ship with provenance attestation generated from the GitHub Action
519
+ via `id-token: write` + `--provenance`; no long-lived `NPM_TOKEN`
520
+ needed. The `Publish to npm` workflow is unchanged from v0.1.0; see
521
+ CONTRIBUTING for the `pnpm version patch && git push --follow-tags`
522
+ flow.
523
+
524
+ No code changes vs v0.1.0; runtime behaviour, API surface, and bundle
525
+ sizes are identical (core gzip 3.30 KB / 3.5 KB budget).
526
+
513
527
  ## [0.1.0] — 2026-05-28
514
528
 
515
529
  Initial public release.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aifsmjs",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Small, strict FSM library for web game development. Pure step() lifecycle, opt-in effects, inspect, replay, and a fast-check property-based testing adapter. Browser / Node / WebView friendly.",
5
5
  "keywords": [
6
6
  "fsm",
@@ -78,6 +78,22 @@
78
78
  "llms.txt",
79
79
  "llms-full.txt"
80
80
  ],
81
+ "scripts": {
82
+ "build": "tsup",
83
+ "test": "vitest run",
84
+ "test:watch": "vitest",
85
+ "lint": "biome check src test",
86
+ "format": "biome format --write src test",
87
+ "typecheck": "tsc --noEmit",
88
+ "verify:exports": "node scripts/verify-exports.mjs",
89
+ "check:size": "node scripts/check-size.mjs",
90
+ "build:llms": "node scripts/build-llms-full.mjs",
91
+ "verify:llms": "node scripts/build-llms-full.mjs && git diff --exit-code -- llms-full.txt",
92
+ "coverage": "vitest run --coverage",
93
+ "example:traffic-light": "tsx examples/01-traffic-light/index.ts",
94
+ "example:approval": "tsx examples/02-approval-workflow/index.ts",
95
+ "prepublishOnly": "pnpm typecheck && pnpm lint && pnpm coverage && pnpm build && pnpm verify:exports && pnpm check:size"
96
+ },
81
97
  "peerDependencies": {
82
98
  "fast-check": "^3.20.0"
83
99
  },
@@ -99,22 +115,8 @@
99
115
  "engines": {
100
116
  "node": ">=18.0.0"
101
117
  },
118
+ "packageManager": "pnpm@9.12.3",
102
119
  "publishConfig": {
103
120
  "access": "public"
104
- },
105
- "scripts": {
106
- "build": "tsup",
107
- "test": "vitest run",
108
- "test:watch": "vitest",
109
- "lint": "biome check src test",
110
- "format": "biome format --write src test",
111
- "typecheck": "tsc --noEmit",
112
- "verify:exports": "node scripts/verify-exports.mjs",
113
- "check:size": "node scripts/check-size.mjs",
114
- "build:llms": "node scripts/build-llms-full.mjs",
115
- "verify:llms": "node scripts/build-llms-full.mjs && git diff --exit-code -- llms-full.txt",
116
- "coverage": "vitest run --coverage",
117
- "example:traffic-light": "tsx examples/01-traffic-light/index.ts",
118
- "example:approval": "tsx examples/02-approval-workflow/index.ts"
119
121
  }
120
- }
122
+ }