-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "tiptap-solid",
"version": "1.0.4",
"description": "SolidJS components for tiptap v2",
"keywords": [
"solid",
"solid-js",
"tiptap",
"tiptap-solid",
"solid-js-tiptap",
"tiptap-v2",
"prosemirror",
"rich-text-editor"
],
"sideEffects": false,
"homepage": "https://github.com/andi23rosca/tiptap-solid",
"bugs": {
"url": "https://github.com/andi23rosca/tiptap-solid/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/andi23rosca/tiptap-solid.git"
},
"author": "Andi Rosca <[email protected]> (https://andi.dev)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"solid": "./dist/index.jsx",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c && tsc",
"typecheck": "tsc"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"babel-preset-solid": "^1.1.7",
"rollup": "^2.58.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"@tiptap/core": "^2.2.2",
"@tiptap/extension-bubble-menu": "^2.2.2",
"@tiptap/extension-floating-menu": "^2.2.2",
"solid-js": "^1.8.0"
}
}