-
-
Notifications
You must be signed in to change notification settings - Fork 289
/
package.json
59 lines (59 loc) · 1.44 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
53
54
55
56
57
58
59
{
"name": "@editorjs/image",
"version": "2.10.0",
"keywords": [
"codex editor",
"image",
"editor.js",
"editorjs"
],
"description": "Image Tool for Editor.js",
"license": "MIT",
"repository": "https://github.com/editor-js/image",
"files": [
"dist"
],
"main": "./dist/image.umd.js",
"module": "./dist/image.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/image.mjs",
"require": "./dist/image.umd.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "concurrently \"vite\" \"node ./dev/server.js\"",
"build": "vite build",
"lint": "eslint",
"lint:errors": "eslint --quiet",
"lint:fix": "eslint --fix"
},
"author": {
"name": "CodeX",
"email": "[email protected]"
},
"devDependencies": {
"@codexteam/ajax": "^4.2.0",
"@editorjs/editorjs": "2.30.0-rc.12",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"concurrently": "^9.0.1",
"eslint": "^9.7.0",
"eslint-config-codex": "^2.0.1",
"eslint-loader": "^4.0.2",
"formidable": "^3.5.1",
"postcss-nested": "^6.0.1",
"postcss-nested-ancestors": "^3.0.0",
"request": "^2.88.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.17.0",
"vite": "^5.3.1",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vite-plugin-dts": "^3.9.1"
},
"dependencies": {
"@codexteam/icons": "^0.3.0"
}
}