tandem-editor 0.2.3 → 0.2.4
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/package.json
CHANGED
|
@@ -1,121 +1,121 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tandem-editor",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Collaborative AI-human document editor with MCP tool integration for Claude",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"tandem",
|
|
7
|
-
"mcp",
|
|
8
|
-
"claude",
|
|
9
|
-
"editor",
|
|
10
|
-
"ai",
|
|
11
|
-
"collaborative"
|
|
12
|
-
],
|
|
13
|
-
"license": "MIT",
|
|
14
|
-
"type": "module",
|
|
15
|
-
"main": "./dist/cli/index.js",
|
|
16
|
-
"bin": {
|
|
17
|
-
"tandem": "dist/cli/index.js"
|
|
18
|
-
},
|
|
19
|
-
"files": [
|
|
20
|
-
"dist/",
|
|
21
|
-
"sample/"
|
|
22
|
-
],
|
|
23
|
-
"exports": {
|
|
24
|
-
".": "./dist/cli/index.js",
|
|
25
|
-
"./dist/cli/index.js": "./dist/cli/index.js"
|
|
26
|
-
},
|
|
27
|
-
"workspaces": [
|
|
28
|
-
"packages/*"
|
|
29
|
-
],
|
|
30
|
-
"scripts": {
|
|
31
|
-
"dev": "vite",
|
|
32
|
-
"dev:standalone": "concurrently \"vite\" \"tsx watch src/server/index.ts\"",
|
|
33
|
-
"dev:client": "vite",
|
|
34
|
-
"dev:server": "tsx watch src/server/index.ts",
|
|
35
|
-
"build": "npm run typecheck && vite build && tsup",
|
|
36
|
-
"build:server": "tsup",
|
|
37
|
-
"typecheck": "tsc -p tsconfig.server.json --noEmit && tsc --noEmit",
|
|
38
|
-
"server": "tsx src/server/index.ts",
|
|
39
|
-
"start:server": "node dist/server/index.js",
|
|
40
|
-
"channel": "tsx src/channel/index.ts",
|
|
41
|
-
"start:channel": "node dist/channel/index.js",
|
|
42
|
-
"test": "vitest",
|
|
43
|
-
"test:e2e": "playwright test",
|
|
44
|
-
"test:e2e:ui": "playwright test --ui",
|
|
45
|
-
"preview": "vite preview",
|
|
46
|
-
"lint": "eslint .",
|
|
47
|
-
"format": "biome format --write .",
|
|
48
|
-
"doctor": "node scripts/doctor.mjs",
|
|
49
|
-
"prepare": "husky",
|
|
50
|
-
"prepublishOnly": "npm run build"
|
|
51
|
-
},
|
|
52
|
-
"engines": {
|
|
53
|
-
"node": ">=22"
|
|
54
|
-
},
|
|
55
|
-
"lint-staged": {
|
|
56
|
-
"*.{ts,tsx}": [
|
|
57
|
-
"eslint --fix",
|
|
58
|
-
"biome format --write"
|
|
59
|
-
],
|
|
60
|
-
"*.json !package-lock.json": [
|
|
61
|
-
"biome format --write"
|
|
62
|
-
]
|
|
63
|
-
},
|
|
64
|
-
"dependencies": {
|
|
65
|
-
"@hocuspocus/provider": "^3.4.4",
|
|
66
|
-
"@hocuspocus/server": "^2.13.0",
|
|
67
|
-
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
68
|
-
"@tiptap/core": "^2.11.0",
|
|
69
|
-
"@tiptap/extension-collaboration": "^2.11.0",
|
|
70
|
-
"@tiptap/extension-collaboration-cursor": "^2.11.0",
|
|
71
|
-
"@tiptap/extension-highlight": "^2.11.0",
|
|
72
|
-
"@tiptap/extension-link": "^2.27.2",
|
|
73
|
-
"@tiptap/extension-placeholder": "^2.11.0",
|
|
74
|
-
"@tiptap/extension-table": "^2.11.0",
|
|
75
|
-
"@tiptap/extension-table-cell": "^2.11.0",
|
|
76
|
-
"@tiptap/extension-table-header": "^2.11.0",
|
|
77
|
-
"@tiptap/extension-table-row": "^2.11.0",
|
|
78
|
-
"@tiptap/extension-unique-id": "^2.11.0",
|
|
79
|
-
"@tiptap/pm": "^2.11.0",
|
|
80
|
-
"@tiptap/react": "^2.11.0",
|
|
81
|
-
"@tiptap/starter-kit": "^2.11.0",
|
|
82
|
-
"dom-serializer": "^3.0.0",
|
|
83
|
-
"env-paths": "^4.0.0",
|
|
84
|
-
"express": "^5.2.1",
|
|
85
|
-
"htmlparser2": "^12.0.0",
|
|
86
|
-
"jszip": "^3.10.1",
|
|
87
|
-
"mammoth": "^1.8.0",
|
|
88
|
-
"react": "^19.2.4",
|
|
89
|
-
"react-dom": "^19.2.4",
|
|
90
|
-
"react-markdown": "^10.1.0",
|
|
91
|
-
"remark-gfm": "^4.0.1",
|
|
92
|
-
"remark-parse": "^11.0.0",
|
|
93
|
-
"remark-stringify": "^11.0.0",
|
|
94
|
-
"unified": "^11.0.0",
|
|
95
|
-
"update-notifier": "^7.3.1",
|
|
96
|
-
"y-prosemirror": "^1.2.12",
|
|
97
|
-
"y-protocols": "^1.0.6",
|
|
98
|
-
"yjs": "^13.6.0",
|
|
99
|
-
"zod": "^3.23.0"
|
|
100
|
-
},
|
|
101
|
-
"devDependencies": {
|
|
102
|
-
"@biomejs/biome": "^2.4.8",
|
|
103
|
-
"@playwright/test": "^1.58.2",
|
|
104
|
-
"@types/node": "^25.5.0",
|
|
105
|
-
"@types/react": "^19.2.14",
|
|
106
|
-
"@types/react-dom": "^19.2.3",
|
|
107
|
-
"@types/update-notifier": "^6.0.8",
|
|
108
|
-
"@vitejs/plugin-react": "^4.3.0",
|
|
109
|
-
"concurrently": "^9.1.0",
|
|
110
|
-
"eslint": "^9.39.4",
|
|
111
|
-
"eslint-plugin-react-hooks": "^5.2.0",
|
|
112
|
-
"husky": "^9.1.7",
|
|
113
|
-
"lint-staged": "^16.4.0",
|
|
114
|
-
"tsup": "^8.5.1",
|
|
115
|
-
"tsx": "^4.19.0",
|
|
116
|
-
"typescript": "^5.6.0",
|
|
117
|
-
"typescript-eslint": "^8.57.2",
|
|
118
|
-
"vite": "^6.0.0",
|
|
119
|
-
"vitest": "^4.1.0"
|
|
120
|
-
}
|
|
121
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "tandem-editor",
|
|
3
|
+
"version": "0.2.4",
|
|
4
|
+
"description": "Collaborative AI-human document editor with MCP tool integration for Claude",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"tandem",
|
|
7
|
+
"mcp",
|
|
8
|
+
"claude",
|
|
9
|
+
"editor",
|
|
10
|
+
"ai",
|
|
11
|
+
"collaborative"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"type": "module",
|
|
15
|
+
"main": "./dist/cli/index.js",
|
|
16
|
+
"bin": {
|
|
17
|
+
"tandem": "dist/cli/index.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist/",
|
|
21
|
+
"sample/"
|
|
22
|
+
],
|
|
23
|
+
"exports": {
|
|
24
|
+
".": "./dist/cli/index.js",
|
|
25
|
+
"./dist/cli/index.js": "./dist/cli/index.js"
|
|
26
|
+
},
|
|
27
|
+
"workspaces": [
|
|
28
|
+
"packages/*"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"dev": "vite",
|
|
32
|
+
"dev:standalone": "concurrently \"vite\" \"tsx watch src/server/index.ts\"",
|
|
33
|
+
"dev:client": "vite",
|
|
34
|
+
"dev:server": "tsx watch src/server/index.ts",
|
|
35
|
+
"build": "npm run typecheck && vite build && tsup",
|
|
36
|
+
"build:server": "tsup",
|
|
37
|
+
"typecheck": "tsc -p tsconfig.server.json --noEmit && tsc --noEmit",
|
|
38
|
+
"server": "tsx src/server/index.ts",
|
|
39
|
+
"start:server": "node dist/server/index.js",
|
|
40
|
+
"channel": "tsx src/channel/index.ts",
|
|
41
|
+
"start:channel": "node dist/channel/index.js",
|
|
42
|
+
"test": "vitest",
|
|
43
|
+
"test:e2e": "playwright test",
|
|
44
|
+
"test:e2e:ui": "playwright test --ui",
|
|
45
|
+
"preview": "vite preview",
|
|
46
|
+
"lint": "eslint .",
|
|
47
|
+
"format": "biome format --write .",
|
|
48
|
+
"doctor": "node scripts/doctor.mjs",
|
|
49
|
+
"prepare": "husky",
|
|
50
|
+
"prepublishOnly": "npm run build"
|
|
51
|
+
},
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=22"
|
|
54
|
+
},
|
|
55
|
+
"lint-staged": {
|
|
56
|
+
"*.{ts,tsx}": [
|
|
57
|
+
"eslint --fix",
|
|
58
|
+
"biome format --write"
|
|
59
|
+
],
|
|
60
|
+
"*.json !package-lock.json": [
|
|
61
|
+
"biome format --write"
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"@hocuspocus/provider": "^3.4.4",
|
|
66
|
+
"@hocuspocus/server": "^2.13.0",
|
|
67
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
68
|
+
"@tiptap/core": "^2.11.0",
|
|
69
|
+
"@tiptap/extension-collaboration": "^2.11.0",
|
|
70
|
+
"@tiptap/extension-collaboration-cursor": "^2.11.0",
|
|
71
|
+
"@tiptap/extension-highlight": "^2.11.0",
|
|
72
|
+
"@tiptap/extension-link": "^2.27.2",
|
|
73
|
+
"@tiptap/extension-placeholder": "^2.11.0",
|
|
74
|
+
"@tiptap/extension-table": "^2.11.0",
|
|
75
|
+
"@tiptap/extension-table-cell": "^2.11.0",
|
|
76
|
+
"@tiptap/extension-table-header": "^2.11.0",
|
|
77
|
+
"@tiptap/extension-table-row": "^2.11.0",
|
|
78
|
+
"@tiptap/extension-unique-id": "^2.11.0",
|
|
79
|
+
"@tiptap/pm": "^2.11.0",
|
|
80
|
+
"@tiptap/react": "^2.11.0",
|
|
81
|
+
"@tiptap/starter-kit": "^2.11.0",
|
|
82
|
+
"dom-serializer": "^3.0.0",
|
|
83
|
+
"env-paths": "^4.0.0",
|
|
84
|
+
"express": "^5.2.1",
|
|
85
|
+
"htmlparser2": "^12.0.0",
|
|
86
|
+
"jszip": "^3.10.1",
|
|
87
|
+
"mammoth": "^1.8.0",
|
|
88
|
+
"react": "^19.2.4",
|
|
89
|
+
"react-dom": "^19.2.4",
|
|
90
|
+
"react-markdown": "^10.1.0",
|
|
91
|
+
"remark-gfm": "^4.0.1",
|
|
92
|
+
"remark-parse": "^11.0.0",
|
|
93
|
+
"remark-stringify": "^11.0.0",
|
|
94
|
+
"unified": "^11.0.0",
|
|
95
|
+
"update-notifier": "^7.3.1",
|
|
96
|
+
"y-prosemirror": "^1.2.12",
|
|
97
|
+
"y-protocols": "^1.0.6",
|
|
98
|
+
"yjs": "^13.6.0",
|
|
99
|
+
"zod": "^3.23.0"
|
|
100
|
+
},
|
|
101
|
+
"devDependencies": {
|
|
102
|
+
"@biomejs/biome": "^2.4.8",
|
|
103
|
+
"@playwright/test": "^1.58.2",
|
|
104
|
+
"@types/node": "^25.5.0",
|
|
105
|
+
"@types/react": "^19.2.14",
|
|
106
|
+
"@types/react-dom": "^19.2.3",
|
|
107
|
+
"@types/update-notifier": "^6.0.8",
|
|
108
|
+
"@vitejs/plugin-react": "^4.3.0",
|
|
109
|
+
"concurrently": "^9.1.0",
|
|
110
|
+
"eslint": "^9.39.4",
|
|
111
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
112
|
+
"husky": "^9.1.7",
|
|
113
|
+
"lint-staged": "^16.4.0",
|
|
114
|
+
"tsup": "^8.5.1",
|
|
115
|
+
"tsx": "^4.19.0",
|
|
116
|
+
"typescript": "^5.6.0",
|
|
117
|
+
"typescript-eslint": "^8.57.2",
|
|
118
|
+
"vite": "^6.0.0",
|
|
119
|
+
"vitest": "^4.1.0"
|
|
120
|
+
}
|
|
121
|
+
}
|