-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
45 lines (45 loc) · 983 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": "@editorjs/inline-code",
"version": "1.5.1",
"keywords": [
"codex editor",
"inline",
"code",
"editor.js",
"editorjs"
],
"description": "InlineCode Tool for Editor.js",
"license": "MIT",
"repository": "https://github.com/editor-js/inline-code",
"files": [
"dist"
],
"main": "./dist/inline-code.umd.js",
"module": "./dist/inline-code.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/inline-code.mjs",
"require": "./dist/inline-code.umd.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "vite build"
},
"author": {
"name": "CodeX Team",
"email": "[email protected]"
},
"devDependencies": {
"@editorjs/editorjs": "^2.30.2",
"typescript": "^5.5.3",
"vite": "^4.5.0",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vite-plugin-dts": "^4.0.0-beta.1"
},
"dependencies": {
"@codexteam/icons": "^0.3.2"
}
}