-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1014 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
41
42
43
44
45
{
"name": "@tiptap/draftjs-to-tiptap",
"module": "index.ts",
"type": "module",
"version": "0.0.11",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ueberdosis/draft-js-to-tiptap.git"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && npm run changeset publish",
"test": "bun test",
"prebuild": "rm -rf dist",
"build": "tsup src/index.ts --format esm,cjs --dts"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/bun": "latest",
"tsup": "^8.1.0"
},
"peerDependencies": {
"typescript": "^5.4.5"
},
"dependencies": {
"@types/draft-js": "^0.11.18",
"@types/prosemirror-model": "^1.17.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}