-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@tiptap/ai-toolkit",
"version": "0.3.0",
"description": "Integrate AI capabilities into the Tiptap editor. This package contains the SDK for connecting to the Server AI Toolkit service.",
"keywords": [
"ai toolkit",
"server",
"server ai toolkit",
"tiptap",
"tiptap ai"
],
"homepage": "https://tiptap.dev/docs/editor/extensions/functionality/ai-toolkit",
"bugs": {
"url": "https://github.com/ueberdosis/tiptap/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ueberdosis/tiptap",
"directory": "packages/ai-toolkit"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"files": [
"src",
"dist"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./streaming-reveal": {
"types": {
"import": "./dist/streaming-reveal.d.ts",
"require": "./dist/streaming-reveal.d.cts"
},
"import": "./dist/streaming-reveal.js",
"require": "./dist/streaming-reveal.cjs"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch --sourcemap"
},
"dependencies": {
"es-toolkit": "^1.41.0",
"zod": "^4.1.8"
},
"devDependencies": {
"@tiptap/core": "workspace:^",
"@tiptap/pm": "workspace:^",
"@tiptap/y-tiptap": "^3.0.7",
"yjs": "^13.6.23"
},
"peerDependencies": {
"@tiptap/core": "^3.0.1",
"@tiptap/pm": "^3.0.1",
"@tiptap/y-tiptap": "^3.0.0",
"yjs": "^13.6.23"
},
"peerDependenciesMeta": {
"@tiptap/y-tiptap": {
"optional": true
},
"yjs": {
"optional": true
}
}
}