-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.73 KB
/
package.json
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
{
"name": "@simulaiofficial/simulai",
"version": "0.0.1",
"type": "module",
"main": "lib/lolo.js",
"types": "types/src/index.d.ts",
"files": [
"lib/",
"types/src/*"
],
"keywords": [
"vue",
"notion",
"editor",
"markdown"
],
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "playwright test",
"coverage": "vitest run --coverage",
"build-bundle": "tsc && vite build --mode library && npx tailwind -c ./tailwind.config.cjs -i ./src/index.css -o lib/style.css"
},
"dependencies": {
"@tiptap/extension-link": "^2.0.0-beta.195",
"@tiptap/extension-placeholder": "^2.0.0-beta.53",
"@tiptap/extension-task-item": "^2.0.0-beta.195",
"@tiptap/extension-task-list": "^2.0.0-beta.195",
"@tiptap/starter-kit": "^2.0.0-beta.191",
"@tiptap/vue-3": "^2.0.0-beta.96",
"compromise": "^14.13.0",
"fuse.js": "^6.6.2",
"joi": "^17.11.0",
"lodash": "^4.17.21",
"oh-vue-icons": "^1.0.0-rc3",
"primevue": "^3.48.1",
"uuid": "^8.3.2",
"vue": "^3.2.37",
"vue-draggable-next": "^2.1.1",
"vue3-datepicker": "^0.4.0",
"vue3-emoji-picker": "^1.1.8"
},
"devDependencies": {
"@babel/types": "^7.18.9",
"@playwright/test": "^1.25.1",
"@types/node": "^18.0.6",
"@types/sortablejs": "^1.13.0",
"@types/uuid": "^8.3.4",
"@vitejs/plugin-vue": "^3.0.0",
"@vitest/coverage-c8": "^0.22.1",
"@vue/test-utils": "^2.0.2",
"autoprefixer": "^10.4.7",
"happy-dom": "^6.0.4",
"postcss": "^8.4.14",
"sass": "^1.69.5",
"tailwindcss": "^3.1.6",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vitest": "^0.22.1",
"vue-tsc": "^0.38.4"
}
}