-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
52 lines (52 loc) · 1.17 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
50
51
52
{
"name": "@editorjs/code",
"version": "2.9.3",
"keywords": [
"codex editor",
"code",
"editor.js",
"editorjs"
],
"description": "Code Tool for Editor.js",
"license": "MIT",
"repository": "https://github.com/editor-js/code",
"files": [
"dist"
],
"main": "./dist/code.umd.js",
"module": "./dist/code.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/code.mjs",
"require": "./dist/code.umd.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint",
"lint:errors": "eslint --quiet",
"lint:fix": "eslint --fix"
},
"author": {
"name": "CodeX Team",
"email": "[email protected]"
},
"devDependencies": {
"@editorjs/editorjs": "^2.30.2",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.9.1",
"eslint-config-codex": "^2.0.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.4.0",
"vite": "^5.4.3",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vite-plugin-dts": "^3.9.1"
},
"dependencies": {
"@codexteam/icons": "^0.3.2"
}
}