ueditor-plus-assets 0.1.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.
Files changed (3) hide show
  1. package/README.md +3 -0
  2. package/index.js +5 -0
  3. package/package.json +29 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # ueditor-plus-assets
2
+
3
+ Static assets for UEditorPlus.
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ const path = require('path')
2
+
3
+ module.exports = {
4
+ assetRoot: path.join(__dirname, 'dist', 'UEditorPlus'),
5
+ }
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "ueditor-plus-assets",
3
+ "version": "0.1.0",
4
+ "description": "Static assets for UEditorPlus",
5
+ "main": "index.js",
6
+ "exports": {
7
+ ".": "./index.js",
8
+ "./package.json": "./package.json"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "index.js",
13
+ "README.md"
14
+ ],
15
+ "scripts": {
16
+ "build": "node -e \"console.log('assets package: no build needed')\"",
17
+ "lint": "echo lint skipped"
18
+ },
19
+ "publishConfig": {
20
+ "access": "public",
21
+ "registry": "https://registry.npmjs.org/"
22
+ },
23
+ "keywords": [
24
+ "ueditor",
25
+ "ueditor-plus",
26
+ "static-assets"
27
+ ],
28
+ "license": "MIT"
29
+ }