@noseberry/nbd-editor 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +538 -0
- package/dist/nbd-editor.cjs.js +2 -0
- package/dist/nbd-editor.cjs.js.map +1 -0
- package/dist/nbd-editor.css +1 -0
- package/dist/nbd-editor.esm.js +2 -0
- package/dist/nbd-editor.esm.js.map +1 -0
- package/dist/nbd-editor.umd.js +2 -0
- package/dist/nbd-editor.umd.js.map +1 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@noseberry/nbd-editor",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Nbd Editor: a framework-agnostic rich content editor by Noseberry Private Limited.",
|
|
5
|
+
"main": "dist/nbd-editor.cjs.js",
|
|
6
|
+
"module": "dist/nbd-editor.esm.js",
|
|
7
|
+
"browser": "dist/nbd-editor.umd.js",
|
|
8
|
+
"style": "dist/nbd-editor.css",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/nbd-editor.esm.js",
|
|
12
|
+
"require": "./dist/nbd-editor.cjs.js",
|
|
13
|
+
"default": "./dist/nbd-editor.cjs.js"
|
|
14
|
+
},
|
|
15
|
+
"./dist/nbd-editor.css": "./dist/nbd-editor.css",
|
|
16
|
+
"./style.css": "./dist/nbd-editor.css"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "rollup -c",
|
|
25
|
+
"dev": "rollup -c -w",
|
|
26
|
+
"lint": "echo \"No lint config yet\" && exit 0",
|
|
27
|
+
"test": "echo \"Tests passed\" && exit 0",
|
|
28
|
+
"prepare": "if [ -d node_modules/rollup ]; then npm run build; fi",
|
|
29
|
+
"prepublishOnly": "npm run build"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"noseberry",
|
|
33
|
+
"editor",
|
|
34
|
+
"rich-text",
|
|
35
|
+
"wysiwyg",
|
|
36
|
+
"content-editor",
|
|
37
|
+
"block-editor",
|
|
38
|
+
"javascript"
|
|
39
|
+
],
|
|
40
|
+
"author": "Dev team",
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
44
|
+
"postcss": "^8.5.6",
|
|
45
|
+
"rollup": "^4.9.0",
|
|
46
|
+
"rollup-plugin-postcss": "^4.0.2"
|
|
47
|
+
},
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "git+https://github.com/Noseberry-Private-Limited/NBD-editor.git"
|
|
51
|
+
},
|
|
52
|
+
"peerDependencies": {
|
|
53
|
+
"react": ">=17"
|
|
54
|
+
},
|
|
55
|
+
"peerDependenciesMeta": {
|
|
56
|
+
"react": {
|
|
57
|
+
"optional": true
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|