-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "editorjs-comment",
"version": "1.0.3",
"description": "editorjs-comment plugin that allows you to add comment to editorjs",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": "https://github.com/osain-az/editorjs-comment",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "npm run build && changeset publish",
"init-changes": "npx changeset",
"lint": "tsc"
},
"keywords": [
"editorjs",
"editorjs comment",
"editorjs-comment",
"comment",
"codex editor",
"editor.js"
],
"author": "Azibodusi osain",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.19",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@editorjs/editorjs": "^2.29.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19"
}
}