-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
45 lines (45 loc) · 950 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/list",
"version": "1.10.0",
"keywords": [
"codex editor",
"list",
"editor.js",
"editorjs"
],
"description": "List Tool for Editor.js",
"license": "MIT",
"repository": "https://github.com/editor-js/list",
"files": [
"dist"
],
"main": "./dist/list.umd.js",
"module": "./dist/list.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/list.mjs",
"require": "./dist/list.umd.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "vite build"
},
"author": {
"name": "CodeX",
"email": "[email protected]"
},
"devDependencies": {
"postcss-nested": "^4.2.1",
"postcss-nested-ancestors": "^2.0.0",
"typescript": "^5.5.3",
"vite": "^4.5.0",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vite-plugin-dts": "^3.9.1"
},
"dependencies": {
"@codexteam/icons": "^0.0.4"
}
}