forked from amirhhashemi/tiptap-text-direction
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 950 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 950 Bytes
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
{
"name": "tiptap-text-direction",
"version": "1.1.2-napkin",
"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",
"repository": {
"type": "git",
"url": "https://github.com/secondlayerco/tiptap-text-directionn"
},
"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.30.0",
"@tiptap/core": "^3.22.3",
"@tiptap/pm": "^3.22.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@tiptap/core": "^3.22.3",
"@tiptap/pm": "^3.22.3"
}
}