-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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
65
66
67
68
{
"name": "@zedix/prose-editor-element",
"version": "1.0.8",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/zedix/prose-editor-element.git"
},
"main": "dist/prose-editor.js",
"exports": {
".": {
"types": "./dist/prose-editor.d.ts",
"import": "./dist/prose-editor.js"
},
"./dist/prose-editor.css": {
"import": "./dist/prose-editor.css",
"require": "./dist/prose-editor.css"
}
},
"files": [
"src",
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build && yarn run build:types && cp src/css/* -r './dist'",
"build:types": "tsc --declaration --emitDeclarationOnly",
"prettier": "prettier --write --loglevel warn .",
"publish": "yarn npm publish",
"publish:dry": "yarn pack --dry-run",
"serve": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"typecheck": "tsc --noEmit --project ./tsconfig.json"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-links": "^7.4.0",
"@storybook/blocks": "^7.4.0",
"@storybook/web-components": "^7.4.0",
"@storybook/web-components-vite": "^7.4.0",
"eslint": "^8.49.0",
"eslint-plugin-wc": "^2.0.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.4.0",
"typescript": "^5.2.2",
"vite": "^3.2.0"
},
"dependencies": {
"@emoji-mart/data": "^1.1.2",
"@floating-ui/dom": "^1.5.1",
"@tiptap/core": "^2.1.7",
"@tiptap/extension-highlight": "^2.1.7",
"@tiptap/extension-image": "^2.1.7",
"@tiptap/extension-link": "^2.1.7",
"@tiptap/extension-placeholder": "^2.1.7",
"@tiptap/extension-underline": "^2.1.7",
"@tiptap/pm": "^2.1.7",
"@tiptap/starter-kit": "^2.1.7",
"emoji-mart": "^5.5.2",
"lit": "^2.8.0",
"remixicon": "^3.5.0"
},
"packageManager": "yarn@3.6.3"
}