@tokenring-ai/writer 0.1.10 → 0.2.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.
Files changed (2) hide show
  1. package/dist/tr-writer +0 -0
  2. package/package.json +26 -26
package/dist/tr-writer CHANGED
Binary file
package/package.json CHANGED
@@ -1,40 +1,43 @@
1
1
  {
2
2
  "name": "@tokenring-ai/writer",
3
3
  "description": "TokenRing Writer Application",
4
- "version": "0.1.10",
4
+ "version": "0.2.1",
5
5
  "devDependencies": {
6
- "@biomejs/biome": "^2.3.6",
7
6
  "@inquirer/prompts": "^8.0.1",
7
+ "@tokenring-ai/agent": "workspace:*",
8
8
  "@tokenring-ai/ai-client": "workspace:*",
9
+ "@tokenring-ai/app": "workspace:*",
9
10
  "@tokenring-ai/blog": "workspace:*",
10
- "@tokenring-ai/agent": "workspace:*",
11
+ "@tokenring-ai/cdn": "workspace:*",
11
12
  "@tokenring-ai/chat": "workspace:*",
12
- "@tokenring-ai/chrome": "workspace:*",
13
13
  "@tokenring-ai/checkpoint": "workspace:*",
14
+ "@tokenring-ai/chrome": "workspace:*",
14
15
  "@tokenring-ai/cli": "workspace:*",
16
+ "@tokenring-ai/cli-ink": "workspace:*",
15
17
  "@tokenring-ai/cloudquote": "workspace:*",
16
- "@tokenring-ai/cdn": "workspace:*",
17
- "@tokenring-ai/serper": "workspace:*",
18
- "@tokenring-ai/research": "workspace:*",
19
- "@tokenring-ai/scraperapi": "workspace:*",
20
- "@tokenring-ai/websearch": "workspace:*",
21
- "@tokenring-ai/wordpress": "workspace:*",
22
18
  "@tokenring-ai/drizzle-storage": "workspace:*",
23
- "@tokenring-ai/filesystem": "workspace:*",
24
19
  "@tokenring-ai/feedback": "workspace:*",
20
+ "@tokenring-ai/filesystem": "workspace:*",
25
21
  "@tokenring-ai/ghost-io": "workspace:*",
26
22
  "@tokenring-ai/local-filesystem": "workspace:*",
27
23
  "@tokenring-ai/mcp": "workspace:*",
28
24
  "@tokenring-ai/memory": "workspace:*",
29
25
  "@tokenring-ai/queue": "workspace:*",
30
- "@tokenring-ai/tasks": "workspace:*",
31
26
  "@tokenring-ai/reddit": "workspace:*",
27
+ "@tokenring-ai/research": "workspace:*",
32
28
  "@tokenring-ai/s3": "workspace:*",
29
+ "@tokenring-ai/scraperapi": "workspace:*",
33
30
  "@tokenring-ai/scripting": "workspace:*",
31
+ "@tokenring-ai/serper": "workspace:*",
32
+ "@tokenring-ai/tasks": "workspace:*",
34
33
  "@tokenring-ai/template": "workspace:*",
34
+ "@tokenring-ai/utility": "workspace:*",
35
+ "@tokenring-ai/web-host": "workspace:*",
36
+ "@tokenring-ai/websearch": "workspace:*",
35
37
  "@tokenring-ai/wikipedia": "workspace:*",
36
- "@types/bun": "^1.3.2",
37
- "bun-types": "^1.3.2",
38
+ "@tokenring-ai/wordpress": "workspace:*",
39
+ "@types/bun": "^1.3.3",
40
+ "bun-types": "^1.3.3",
38
41
  "chalk": "^5.6.2",
39
42
  "commander": "^14.0.2",
40
43
  "husky": "^9.1.7",
@@ -43,12 +46,17 @@
43
46
  "trufflehog": "^0.0.5",
44
47
  "ts": "^0.2.2",
45
48
  "typescript": "^5.9.3",
46
- "vitest": "^4.0.12",
47
- "zod": "^4.1.12"
49
+ "vitest": "^4.0.14",
50
+ "zod": "^4.1.13"
51
+ },
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "https://github.com/tokenring-ai/monorepo",
55
+ "directory": "app/writer"
48
56
  },
49
57
  "license": "MIT",
50
58
  "bin": {
51
- "tr-writer": "./dist/tr-writer"
59
+ "tr-writer": "dist/tr-writer"
52
60
  },
53
61
  "files": [
54
62
  "dist",
@@ -61,15 +69,7 @@
61
69
  "writer": "bun src/tr-writer.js --source ./",
62
70
  "test": "vitest run",
63
71
  "prepare": "husky",
64
- "biome": "biome format --fix",
65
- "update-all-dependencies-latest": "git submodule foreach npx npm-check-updates -u",
66
72
  "release:patch": "NEWVERSION=`bun pm version patch` && git add package.json && git commit -m \"Bump version to ${NEWVERSION}\" && git tag ${NEWVERSION} && git submodule foreach git push && git push && git push --tags"
67
73
  },
68
- "type": "module",
69
- "workspaces": [
70
- "pkg/*"
71
- ],
72
- "dependencies": {
73
- "@ai-sdk/mcp": "^0.0.8"
74
- }
74
+ "type": "module"
75
75
  }