-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.42 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.42 KB
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
60
61
62
{
"name": "@coolbytes/editorjs-table",
"description": "Table block tool for Editor.js",
"version": "1.0.1",
"private": false,
"homepage": "https://apps.coolbytes.in/editorjs-table",
"license": "MIT",
"author": {
"name": "Cool Bytes",
"email": "57877111+CoolBytesIN@users.noreply.github.com"
},
"keywords": [
"editor.js",
"editorjs",
"codex editor",
"coolbytes",
"table"
],
"main": "./dist/table.umd.js",
"module": "./dist/table.mjs",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"import": "./dist/table.mjs",
"require": "./dist/table.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint -c ./.eslintrc --ext .js --fix .",
"ready": "npm login"
},
"bugs": {
"url": "https://github.com/CoolBytesIN/editorjs-table/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoolBytesIN/editorjs-table.git"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"css-loader": "^7.1.2",
"cssnano": "^4.1.7",
"eslint": "^5.8.0",
"eslint-config-codex": "github:codex-team/eslint-config",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.1.0",
"postcss-nesting": "^7.0.0",
"vite": "^4.5.0",
"vite-plugin-css-injected-by-js": "^3.3.0"
},
"dependencies": {
"@codexteam/icons": "^0.0.6"
},
"publishConfig": {
"access": "public"
}
}