@harbour-enterprises/superdoc 1.0.0-alpha.2 → 1.0.0-alpha.25
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/README.md +12 -0
- package/dist/style.css +855 -1243
- package/dist/superdoc.cjs.js +34277 -22957
- package/dist/superdoc.cjs.js.map +1 -1
- package/dist/superdoc.es.js +34277 -22957
- package/dist/superdoc.es.js.map +1 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
A supercharged document viewer and editor
|
|
4
4
|
|
|
5
|
+
### Development
|
|
6
|
+
```
|
|
7
|
+
npm install
|
|
8
|
+
npm run dev
|
|
9
|
+
|
|
10
|
+
This will load the Vue 3 app with test data. The main entry points are:
|
|
11
|
+
- main.js (test data)
|
|
12
|
+
- Superdoc.vue
|
|
13
|
+
|
|
14
|
+
For document editor (prose mirror), please see DocumentEditor.vue
|
|
15
|
+
```
|
|
16
|
+
|
|
5
17
|
### Installation
|
|
6
18
|
``` npm install @harbour-enterprises/superdoc ```
|
|
7
19
|
|