@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.
- package/README.md +1 -1
- package/package.json +11 -7
- package/index.d.ts +0 -1664
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@roo-code/types",
|
|
3
|
-
"version": "1.
|
|
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": "
|
|
32
|
-
"prepublishOnly": "
|
|
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
|
-
"
|
|
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
|
}
|