@animalabs/tavern-mcpl 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.
@@ -15,16 +15,13 @@ jobs:
15
15
  runs-on: ubuntu-latest
16
16
 
17
17
  steps:
18
- - uses: actions/checkout@v4
18
+ - uses: actions/checkout@v6
19
19
 
20
20
  - name: Setup Node.js
21
- uses: actions/setup-node@v4
21
+ uses: actions/setup-node@v6
22
22
  with:
23
23
  node-version: 24
24
24
 
25
- - name: Pin mcpl-core to the published package (file: dep is local-dev only)
26
- run: npm pkg set 'dependencies.@animalabs/mcpl-core=^0.2.0'
27
-
28
25
  - name: Install dependencies
29
26
  run: npm install
30
27
 
@@ -46,18 +43,15 @@ jobs:
46
43
  id-token: write
47
44
 
48
45
  steps:
49
- - uses: actions/checkout@v4
46
+ - uses: actions/checkout@v6
50
47
 
51
48
  - name: Setup Node.js
52
- uses: actions/setup-node@v4
49
+ uses: actions/setup-node@v6
53
50
  with:
54
51
  # node 24 ships npm >= 11.5.1, required for OIDC publishing.
55
52
  node-version: 24
56
53
  registry-url: https://registry.npmjs.org
57
54
 
58
- - name: Pin mcpl-core to the published package (file: dep is local-dev only)
59
- run: npm pkg set 'dependencies.@animalabs/mcpl-core=^0.2.0'
60
-
61
55
  - name: Install dependencies
62
56
  run: npm install
63
57
 
@@ -65,4 +59,6 @@ jobs:
65
59
  run: npm run build
66
60
 
67
61
  - name: Publish
68
- run: npm publish --access public --provenance
62
+ # This repository is private, so npm cannot generate provenance for it.
63
+ # OIDC trusted publishing still authenticates the publish itself.
64
+ run: npm publish --access public
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@animalabs/tavern-mcpl",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "The Lantern & Ladle — a stateful multi-agent network MCPL server (micro-MUD playtest for the network-MCPL pattern)",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",
@@ -10,11 +10,11 @@
10
10
  "playtest": "bun playtest.ts"
11
11
  },
12
12
  "dependencies": {
13
- "@animalabs/mcpl-core": "^0.2.0",
13
+ "@animalabs/mcpl-core": "^0.2.1",
14
14
  "ws": "^8.18.0"
15
15
  },
16
16
  "devDependencies": {
17
- "@animalabs/agent-framework": "file:../agent-framework",
17
+ "@animalabs/agent-framework": "^0.6.2",
18
18
  "@types/node": "^20.0.0",
19
19
  "@types/ws": "^8.5.0",
20
20
  "typescript": "^5.5.0"