-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "editorjs-embed-control",
"version": "1.0.2",
"keywords": [
"codex editor",
"embed",
"editor.js",
"editorjs"
],
"description": "Embed Tool for Editor.js with input field",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/VolgaIgor/editorjs-embed-control.git"
},
"files": [
"dist"
],
"main": "./dist/embed.umd.js",
"module": "./dist/embed.mjs",
"exports": {
".": {
"import": "./dist/embed.mjs",
"require": "./dist/embed.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "mocha -r @babel/register -r ignore-styles --recursive ./test",
"lint": "eslint src/ --ext .js",
"lint:errors": "eslint src/ --ext .js --quiet",
"lint:fix": "eslint src/ --ext .js --fix"
},
"author": "Igor Shuvalov «VolgaIgor» & CodeX",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/register": "^7.22.15",
"chai": "^4.2.0",
"debounce": "^1.2.0",
"eslint": "^7.25.0",
"eslint-config-codex": "^1.6.1",
"ignore-styles": "^5.0.1",
"mocha": "^7.1.1",
"postcss-nested": "^4.2.1",
"postcss-nested-ancestors": "^2.0.0",
"vite": "^4.5.0",
"vite-plugin-css-injected-by-js": "^3.3.0"
},
"dependencies": {
"@codexteam/icons": "^0.3.0"
},
"bugs": {
"url": "https://github.com/VolgaIgor/editorjs-embed-control/issues"
},
"homepage": "https://github.com/VolgaIgor/editorjs-embed-control#readme",
"directories": {
"test": "test"
}
}