-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "@editorjs/underline",
"version": "1.2.1",
"keywords": [
"underline",
"tool",
"plugin",
"editor.js",
"editorjs"
],
"description": "Inline tool for underlining text fragments",
"license": "MIT",
"repository": "https://github.com/editor-js/underline",
"main": "./dist/underline.umd.js",
"module": "./dist/underline.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/underline.mjs",
"require": "./dist/underline.umd.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "vite build"
},
"author": {
"name": "fajardm",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/editor-js/underline/issues"
},
"homepage": "https://github.com/editor-js/underline#readme",
"devDependencies": {
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vite-plugin-dts": "^3.9.1",
"@editorjs/editorjs": "^2.30.2"
},
"dependencies": {
"@codexteam/icons": "^0.3.2"
}
}