cursor-agent-bridge 0.1.0 → 0.1.2

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 -0
  2. package/package.json +19 -12
package/README.md CHANGED
@@ -110,3 +110,5 @@ pnpm run ci
110
110
  ```
111
111
 
112
112
  Release publishing is handled by GitHub Actions on tags named `v*`.
113
+ The publish workflow uses npm Trusted Publishing with GitHub OIDC, so it does
114
+ not require an `NPM_TOKEN` repository secret.
package/package.json CHANGED
@@ -1,8 +1,16 @@
1
1
  {
2
2
  "name": "cursor-agent-bridge",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Responses-compatible API bridge for Cursor Agent CLI",
5
5
  "type": "module",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/xwartz/cursor-agent-bridge"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/xwartz/cursor-agent-bridge/issues"
12
+ },
13
+ "homepage": "https://github.com/xwartz/cursor-agent-bridge#readme",
6
14
  "bin": {
7
15
  "cursor-agent-bridge": "./dist/cli.mjs"
8
16
  },
@@ -17,15 +25,6 @@
17
25
  "README.md",
18
26
  "LICENSE"
19
27
  ],
20
- "scripts": {
21
- "build": "tsdown",
22
- "check": "biome check .",
23
- "check:fix": "biome check --write .",
24
- "test": "vitest run",
25
- "test:coverage": "vitest run --coverage",
26
- "typecheck": "tsc --noEmit",
27
- "ci": "pnpm check && pnpm typecheck && pnpm test:coverage && pnpm build"
28
- },
29
28
  "keywords": [
30
29
  "cursor",
31
30
  "codex",
@@ -39,7 +38,6 @@
39
38
  "engines": {
40
39
  "node": ">=20"
41
40
  },
42
- "packageManager": "pnpm@11.9.0",
43
41
  "devDependencies": {
44
42
  "@biomejs/biome": "^2.5.1",
45
43
  "@types/node": "^26.0.1",
@@ -49,5 +47,14 @@
49
47
  "unrun": "^0.3.1",
50
48
  "vite": "8.1.0",
51
49
  "vitest": "^4.1.9"
50
+ },
51
+ "scripts": {
52
+ "build": "tsdown",
53
+ "check": "biome check .",
54
+ "check:fix": "biome check --write .",
55
+ "test": "vitest run",
56
+ "test:coverage": "vitest run --coverage",
57
+ "typecheck": "tsc --noEmit",
58
+ "ci": "pnpm check && pnpm typecheck && pnpm test:coverage && pnpm build"
52
59
  }
53
- }
60
+ }