forked from opentiny/tiny-robot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 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
{
"name": "@opentiny/tiny-robot",
"version": "0.3.1",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"dev": "vue-tsc && vite build --watch",
"build": "vue-tsc && vite build",
"type-check": "vue-tsc --noEmit"
},
"peerDependencies": {
"dompurify": "^3.3.1",
"markdown-it": "^14.1.0",
"vue": "^3.3.11",
"@tiptap/core": "^3.11.0",
"@tiptap/vue-3": "^3.11.0",
"@tiptap/pm": "^3.11.0",
"@tiptap/extension-document": "^3.11.0",
"@tiptap/extension-paragraph": "^3.11.0",
"@tiptap/extension-text": "^3.11.0",
"@tiptap/extension-history": "^3.11.0",
"@tiptap/extension-placeholder": "^3.11.0",
"@tiptap/extension-character-count": "^3.11.0"
},
"dependencies": {
"@floating-ui/dom": "^1.6.0",
"@opentiny/tiny-robot-svgs": "workspace:*",
"@opentiny/vue": "^3.20.0",
"@vueuse/core": "^13.1.0",
"jsonrepair": "^3.13.1"
},
"devDependencies": {
"@types/dom-speech-recognition": "^0.0.6",
"@types/lodash-es": "^4.17.12",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.13.17",
"@vitejs/plugin-vue": "^4.5.2",
"@vitejs/plugin-vue-jsx": "^4.1.2",
"dompurify": "^3.3.1",
"less": "^4.2.2",
"markdown-it": "^14.1.0",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^4.5.3",
"vue": "^3.3.11",
"vue-tsc": "^2.2.8"
}
}