@omercnet/paseo-queens 0.1.0-next.130.1 → 0.1.0-next.133.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.
package/README.md CHANGED
@@ -60,7 +60,7 @@ npm run import:puzzles
60
60
 
61
61
  ## Install
62
62
 
63
- ### Paseo 0.9 beta
63
+ ### Paseo 0.9
64
64
 
65
65
  Install the published npm package on the daemon host:
66
66
 
@@ -75,20 +75,6 @@ paseo plugin update queens --check
75
75
  paseo plugin update queens
76
76
  ```
77
77
 
78
- ### Paseo 0.8
79
-
80
- Install from this monorepo:
81
-
82
- ```bash
83
- paseo plugin install omercnet/paseo-plugins:queens
84
- ```
85
-
86
- Or install a local checkout by absolute path on the daemon host:
87
-
88
- ```bash
89
- paseo plugin install /absolute/path/to/paseo-plugins/queens
90
- ```
91
-
92
78
  Open **Queens** from the sidebar or Command Center. Open any agent session to use the composer mini-game.
93
79
 
94
80
  ## Develop
@@ -96,10 +82,10 @@ Open **Queens** from the sidebar or Command Center. Open any agent session to us
96
82
  Use an isolated Paseo home and explicit host. Never reload this development checkout against your default daemon.
97
83
 
98
84
  ```bash
99
- npm ci
100
- npm run check
101
- npm run typecheck
102
- npm test
85
+ bun install
86
+ bun run check
87
+ bun run typecheck
88
+ bun run test
103
89
 
104
90
  paseo daemon config set daemon.listen 127.0.0.1:6802 --home /tmp/queens-dev
105
91
  paseo daemon config set daemon.relay.enabled false --home /tmp/queens-dev
@@ -113,7 +99,7 @@ Release Please owns package versions, changelog generation, component tags, and
113
99
 
114
100
  ## Requirements
115
101
 
116
- - Paseo `^0.8.0` or `^0.9.0-beta.1`
102
+ - Paseo `>=0.8.0 <0.10.0`
117
103
  - Plugins enabled on the target daemon
118
104
  - React Native-compatible Paseo client on web, desktop, iOS, or Android
119
105
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omercnet/paseo-queens",
3
- "version": "0.1.0-next.130.1",
3
+ "version": "0.1.0-next.133.1",
4
4
  "type": "module",
5
5
  "description": "A cross-platform Queens logic puzzle for Paseo.",
6
6
  "license": "MIT",
@@ -17,7 +17,7 @@
17
17
  "publishConfig": {
18
18
  "access": "public"
19
19
  },
20
- "packageManager": "npm@11.19.1",
20
+ "packageManager": "bun@1.4.2",
21
21
  "engines": {
22
22
  "node": ">=24"
23
23
  },
@@ -38,26 +38,22 @@
38
38
  "paseo-plugin.json"
39
39
  ],
40
40
  "scripts": {
41
- "check": "biome check --error-on-warnings .",
41
+ "check": "biome check .",
42
+ "check:write": "biome check --write .",
42
43
  "import:puzzles": "node scripts/import-curated-puzzles.mjs",
43
- "test": "run-s test:ci:*",
44
+ "test": "vitest run",
44
45
  "typecheck": "tsc --noEmit",
45
- "verify:package": "npm pack --dry-run",
46
- "check:write": "biome check --write .",
47
- "test:ci:unit": "vitest run",
48
- "build": "node ../.github/scripts/build-plugin.mjs"
46
+ "verify:package": "npm pack --dry-run"
49
47
  },
50
48
  "devDependencies": {
51
- "@biomejs/biome": "^2.5.14",
52
- "@getpaseo/plugin": "0.9.0-beta.1",
53
- "@getpaseo/server": "0.9.0-beta.1",
54
- "@types/node": "^24.5.2",
55
- "@types/react": "~19.2.0",
56
- "npm-run-all2": "^9.0.3",
49
+ "@biomejs/biome": "^2.5.10",
50
+ "@getpaseo/plugin": "0.9.0",
51
+ "@types/node": "^24.10.1",
52
+ "@types/react": "^19.2.18",
57
53
  "react": "19.1.0",
58
54
  "react-native": "0.81.5",
59
- "typescript": "^7.0.0",
55
+ "typescript": "^7.0.2",
60
56
  "vitest": "^5.0.0",
61
- "zod": "^4.4.3"
57
+ "zod": "4.4.3"
62
58
  }
63
59
  }
package/paseo-plugin.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "id": "queens",
3
- "requirements": { "paseo": "^0.8.0 || ^0.9.0-beta.1" }
3
+ "requirements": { "paseo": ">=0.8.0 <0.10.0" }
4
4
  }