-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
129 lines (129 loc) · 4.39 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
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
122
123
124
125
126
127
128
129
{
"name": "@matters/matters-editor",
"version": "0.3.1",
"description": "Editor for matters.news",
"author": "https://github.com/thematters",
"homepage": "https://github.com/thematters/matters-editor",
"repository": {
"type": "git",
"url": "[email protected]:thematters/matters-editor.git"
},
"engines": {
"node": ">=18.19 <19.0"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs && npm run post:build",
"build:demo": "rollup --config demo/rollup.config.js --bundleConfigAsCjs",
"post:build": "node --loader ts-node/esm --experimental-specifier-resolution=node ./bin/post-build.js",
"build:examples": "node --loader ts-node/esm --experimental-specifier-resolution=node ./bin/build-examples.ts",
"format": "prettier --write \"{src,}/**/*.{ts,json,tsx}\"",
"lint": "tsc && eslint --quiet src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"test": "vitest --run",
"prepare": "husky",
"demo:transformers": "npm run build:demo && http-server ./demo",
"benchmark": "node --loader ts-node/esm --experimental-specifier-resolution=node ./benchmark/index.ts"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"dependencies": {
"@tiptap/core": "2.8.0",
"@tiptap/extension-blockquote": "2.8.0",
"@tiptap/extension-bubble-menu": "^2.8.0",
"@tiptap/extension-bullet-list": "2.8.0",
"@tiptap/extension-code-block": "2.8.0",
"@tiptap/extension-document": "2.8.0",
"@tiptap/extension-dropcursor": "^2.8.0",
"@tiptap/extension-floating-menu": "^2.8.0",
"@tiptap/extension-gapcursor": "2.8.0",
"@tiptap/extension-hard-break": "2.8.0",
"@tiptap/extension-heading": "2.8.0",
"@tiptap/extension-history": "2.8.0",
"@tiptap/extension-horizontal-rule": "2.8.0",
"@tiptap/extension-list-item": "2.8.0",
"@tiptap/extension-ordered-list": "2.8.0",
"@tiptap/extension-paragraph": "2.8.0",
"@tiptap/extension-placeholder": "2.8.0",
"@tiptap/extension-strike": "2.8.0",
"@tiptap/extension-text": "2.8.0",
"@tiptap/extension-text-style": "^2.8.0",
"@tiptap/pm": "2.8.0",
"@tiptap/react": "2.8.0",
"@tiptap/suggestion": "2.8.0",
"hast-util-to-html": "^9.0.1",
"linkifyjs": "^4.1.3",
"mdast-util-gfm-strikethrough": "^2.0.0",
"micromark-extension-gfm-strikethrough": "^2.1.0",
"micromark-util-combine-extensions": "^2.0.0",
"rehype-external-links": "^3.0.0",
"rehype-format": "^5.0.0",
"rehype-parse": "^9.0.0",
"rehype-raw": "^7.0.0",
"rehype-remark": "^10.0.0",
"rehype-rewrite": "^4.0.2",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-breaks": "^4.0.0",
"remark-directive": "^3.0.0",
"remark-directive-rehype": "^0.4.2",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5",
"validator": "^13.12.0",
"zeed-dom": "^0.13.3"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/common-tags": "^1.8.4",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/natural-compare-lite": "^1.4.2",
"@types/node": "^20.11.25",
"@types/react": "^17.0.53",
"@types/react-dom": "^17.0.19",
"@types/validator": "^13.12.0",
"benny": "^3.7.1",
"common-tags": "^1.8.2",
"eslint": "^9.8.0",
"eslint-config-love": "^62.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fs-extra": "^11.2.0",
"http-server": "^14.1.1",
"husky": "^9.1.4",
"natural-compare-lite": "^1.4.0",
"prettier": "^3.3.3",
"rollup": "^3.25.3",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0",
"vitest": "^2.0.4"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}