-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1009 Bytes
/
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
{
"name": "tiptap-text-direction",
"version": "0.3.1",
"description": "Text direction extension for Tiptap",
"private": false,
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"homepage": "https://github.com/amirhhashemi/tiptap-text-direction",
"repository": {
"type": "git",
"url": "https://github.com/amirhhashemi/tiptap-text-direction"
},
"keywords": [
"prosemirror",
"tiptap",
"right-to-left",
"rtl",
"text-direction"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"check": "tsc",
"ci": "pnpm check && pnpm build",
"release": "pnpm check && pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@tiptap/core": "^2.0.2",
"@tiptap/pm": "^2.0.2",
"tsup": "^6.7.0",
"typescript": "^5.0.3"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",
"@tiptap/pm": "^2.0.0"
}
}