forked from editor-js/list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1017 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
{
"name": "@editorjs/nested-list",
"version": "1.4.2",
"keywords": [
"codex editor",
"nested-list",
"editor.js",
"editorjs"
],
"description": "Nested list Tool for EditorJS",
"repository": "https://github.com/editor-js/nested-list.git",
"author": "CodeX <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/nested-list.umd.js",
"module": "./dist/nested-list.mjs",
"exports": {
".": {
"import": "./dist/nested-list.mjs",
"require": "./dist/nested-list.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint src/ --quiet",
"lint:errors": "eslint src/ --quiet",
"lint:fix": "eslint src/ --fix"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-loader": "^4.0.2",
"postcss-nested": "^5.0.3",
"postcss-nested-ancestors": "^2.0.0",
"vite": "^4.5.0",
"vite-plugin-css-injected-by-js": "^3.3.0"
},
"dependencies": {
"@codexteam/icons": "^0.0.2"
}
}