@tokenring-ai/writer 0.1.8 → 0.1.10

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/dist/tr-writer +0 -0
  2. package/package.json +17 -14
package/dist/tr-writer CHANGED
Binary file
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@tokenring-ai/writer",
3
3
  "description": "TokenRing Writer Application",
4
- "version": "0.1.8",
4
+ "version": "0.1.10",
5
5
  "devDependencies": {
6
- "@dotenvx/dotenvx": "^1.48.4",
7
- "@inquirer/prompts": "^7.8.1",
6
+ "@biomejs/biome": "^2.3.6",
7
+ "@inquirer/prompts": "^8.0.1",
8
8
  "@tokenring-ai/ai-client": "workspace:*",
9
9
  "@tokenring-ai/blog": "workspace:*",
10
10
  "@tokenring-ai/agent": "workspace:*",
11
+ "@tokenring-ai/chat": "workspace:*",
11
12
  "@tokenring-ai/chrome": "workspace:*",
12
13
  "@tokenring-ai/checkpoint": "workspace:*",
13
14
  "@tokenring-ai/cli": "workspace:*",
@@ -32,19 +33,18 @@
32
33
  "@tokenring-ai/scripting": "workspace:*",
33
34
  "@tokenring-ai/template": "workspace:*",
34
35
  "@tokenring-ai/wikipedia": "workspace:*",
35
- "@types/bun": "^1.3.0",
36
- "bun-types": "^1.3.0",
36
+ "@types/bun": "^1.3.2",
37
+ "bun-types": "^1.3.2",
37
38
  "chalk": "^5.6.2",
38
- "commander": "^14.0.0",
39
- "path-browserify": "^1.0.1",
40
- "@biomejs/biome": "^2.2.0",
39
+ "commander": "^14.0.2",
41
40
  "husky": "^9.1.7",
42
- "jsdom": "^26.1.0",
43
- "node-gyp": "^11.3.0",
41
+ "jsdom": "^27.2.0",
42
+ "node-gyp": "^12.1.0",
44
43
  "trufflehog": "^0.0.5",
45
44
  "ts": "^0.2.2",
46
- "vitest": "^3.2.4",
47
- "zod": "^4.1.11"
45
+ "typescript": "^5.9.3",
46
+ "vitest": "^4.0.12",
47
+ "zod": "^4.1.12"
48
48
  },
49
49
  "license": "MIT",
50
50
  "bin": {
@@ -58,7 +58,7 @@
58
58
  "scripts": {
59
59
  "build": "bun build --compile --outfile=dist/tr-writer src/tr-writer.ts",
60
60
  "prepublishOnly": "bun run build",
61
- "build-container": "docker build -t tokenring-ai/writer:latest -f docker/Dockerfile .",
61
+ "writer": "bun src/tr-writer.js --source ./",
62
62
  "test": "vitest run",
63
63
  "prepare": "husky",
64
64
  "biome": "biome format --fix",
@@ -68,5 +68,8 @@
68
68
  "type": "module",
69
69
  "workspaces": [
70
70
  "pkg/*"
71
- ]
71
+ ],
72
+ "dependencies": {
73
+ "@ai-sdk/mcp": "^0.0.8"
74
+ }
72
75
  }