-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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
{
"name": "@tiptap/draftjs-to-tiptap",
"module": "./dist/index.js",
"type": "module",
"version": "0.0.12",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ueberdosis/draft-js-to-tiptap.git"
},
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"src"
],
"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.11",
"@types/bun": "latest",
"tsup": "^8.3.5"
},
"peerDependencies": {
"typescript": "^5.4.5"
},
"dependencies": {
"@types/draft-js": "^0.11.18",
"@types/prosemirror-model": "^1.17.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}