-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.95 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.95 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "shared-projects-frontend",
"version": "0.6.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./lib": {
"types": "./dist/lib/index.d.ts",
"default": "./dist/lib/index.js"
},
"./interfaces": {
"types": "./dist/interfaces/index.d.ts",
"default": "./dist/interfaces/index.js"
},
"./models": {
"types": "./dist/models/index.d.ts",
"default": "./dist/models/index.js"
},
"./apis": {
"types": "./dist/apis/index.d.ts",
"default": "./dist/apis/index.js"
},
"./translate": {
"types": "./dist/translate/index.d.ts",
"default": "./dist/translate/index.js"
}
},
"scripts": {
"build-index": "python3 utils/generate.py",
"build": "yarn build-index && rm -rf dist && tsup",
"lint": "eslint --ext .ts --fix ./src"
},
"dependencies": {
"ofetch": "^1.5.1",
"typescript": "^6.0.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@tiptap/core": "2.26.3",
"@tiptap/extension-blockquote": "2.26.3",
"@tiptap/extension-bold": "2.26.3",
"@tiptap/extension-bullet-list": "2.26.3",
"@tiptap/extension-code-block": "2.26.3",
"@tiptap/extension-code-block-lowlight": "2.26.3",
"@tiptap/extension-collaboration": "2.26.3",
"@tiptap/extension-collaboration-cursor": "2.26.3",
"@tiptap/extension-color": "2.26.3",
"@tiptap/extension-gapcursor": "2.26.3",
"@tiptap/extension-heading": "2.26.3",
"@tiptap/extension-history": "2.26.3",
"@tiptap/extension-image": "2.26.3",
"@tiptap/extension-italic": "2.26.3",
"@tiptap/extension-link": "2.26.3",
"@tiptap/extension-list-item": "2.26.3",
"@tiptap/extension-ordered-list": "2.26.3",
"@tiptap/extension-table": "2.26.3",
"@tiptap/extension-table-cell": "2.26.3",
"@tiptap/extension-table-header": "2.26.3",
"@tiptap/extension-table-row": "2.26.3",
"@tiptap/extension-text-align": "2.26.3",
"@tiptap/extension-text-style": "2.26.3",
"@tiptap/extension-underline": "2.26.3",
"@tiptap/html": "2.26.3",
"@tiptap/pm": "2.26.3",
"@tiptap/starter-kit": "2.26.3",
"@types/jsonwebtoken": "^9.0.10",
"@typescript-eslint/eslint-plugin": "8.46.0",
"@typescript-eslint/parser": "8.46.0",
"es-toolkit": "^1.49.0",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"jiti": "^2.7.0",
"lowlight": "^3.3.0",
"prettier-plugin-sort-imports": "^1.8.11",
"tsup": "^8.5.1",
"typescript-eslint": "^8.62.1",
"yjs": "13.6.27"
},
"peerDependencies": {
"@tiptap/core": "2.26.3",
"@tiptap/extension-blockquote": "2.26.3",
"@tiptap/extension-bold": "2.26.3",
"@tiptap/extension-bullet-list": "2.26.3",
"@tiptap/extension-code-block": "2.26.3",
"@tiptap/extension-code-block-lowlight": "2.26.3",
"@tiptap/extension-collaboration": "2.26.3",
"@tiptap/extension-collaboration-cursor": "2.26.3",
"@tiptap/extension-color": "2.26.3",
"@tiptap/extension-gapcursor": "2.26.3",
"@tiptap/extension-heading": "2.26.3",
"@tiptap/extension-history": "2.26.3",
"@tiptap/extension-image": "2.26.3",
"@tiptap/extension-italic": "2.26.3",
"@tiptap/extension-link": "2.26.3",
"@tiptap/extension-list-item": "2.26.3",
"@tiptap/extension-ordered-list": "2.26.3",
"@tiptap/extension-table": "2.26.3",
"@tiptap/extension-table-cell": "2.26.3",
"@tiptap/extension-table-header": "2.26.3",
"@tiptap/extension-table-row": "2.26.3",
"@tiptap/extension-text-align": "2.26.3",
"@tiptap/extension-text-style": "2.26.3",
"@tiptap/extension-underline": "2.26.3",
"@tiptap/html": "2.26.3",
"@tiptap/pm": "2.26.3",
"@tiptap/starter-kit": "2.26.3",
"lowlight": "^3.3.0",
"yjs": "13.6.27"
},
"packageManager": "yarn@4.17.1",
"license": "CC-BY-NC-SA-4.0"
}