@roo-code/types 1.3.0 → 1.5.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +11 -7
  3. package/index.d.ts +0 -1664
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Roo Code Types
2
2
 
3
- TypeScript type definitions for Roo Code.
3
+ TypeScript type definitions for Roo Code. Available on (NPM)[https://www.npmjs.com/package/@roo-code/types].
4
4
 
5
5
  ## Installation
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roo-code/types",
3
- "version": "1.3.0",
3
+ "version": "1.5.0",
4
4
  "description": "TypeScript type definitions for Roo Code",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -20,22 +20,26 @@
20
20
  "roo-code",
21
21
  "ai"
22
22
  ],
23
- "main": "index.js",
24
- "types": "index.d.ts",
23
+ "main": "dist/index.js",
24
+ "types": "dist/index.d.ts",
25
25
  "files": [
26
- "index.d.ts",
26
+ "dist/index.d.ts",
27
+ "dist/index.js",
27
28
  "README.md"
28
29
  ],
29
30
  "packageManager": "pnpm@10.8.1",
30
31
  "scripts": {
31
- "build": "echo \"No build required - this package only contains type definitions\"",
32
- "prepublishOnly": "npm run build",
32
+ "build": "tsup src/index.d.ts --format cjs --clean --out-dir dist",
33
+ "prepublishOnly": "pnpm run build",
33
34
  "check-types": "tsc --noEmit",
34
35
  "release:test": "dotenvx run -f .env.local -- semantic-release --dry-run",
35
36
  "release": "dotenvx run -f .env.local -- semantic-release --no-ci"
36
37
  },
37
38
  "devDependencies": {
38
39
  "@dotenvx/dotenvx": "^1.44.0",
39
- "semantic-release": "^24.2.3"
40
+ "@types/node": "^22.15.17",
41
+ "semantic-release": "^24.2.3",
42
+ "tsup": "^8.4.0",
43
+ "typescript": "^5.8.3"
40
44
  }
41
45
  }