@glifox/gnosis 0.0.1 → 0.0.3

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 (2) hide show
  1. package/README.md +5 -7
  2. package/package.json +13 -11
package/README.md CHANGED
@@ -4,11 +4,9 @@ _GNOSIS_ is an extension-pack for codemirror to support WYSIWYG markdown edition
4
4
 
5
5
  ## Why another **_WYSIWYG_ markdown editor**?
6
6
 
7
- I went into a lot of research over the internet, and found some _WYSIWYG markdown editor's_,
8
- unfurtunetly they are not as good as the **obsidian** editor. The problem here
9
- it is not open sourse... _so i decide to create my own_.
7
+ I did a lot of online research, and found some _WYSIWYG markdown editors_. However, none of the Open Source options seemed good enough. The **Obsidian** editor is nice but not Open Source... _So I decided to start a new project_.
10
8
 
11
- ## Similar proyects
9
+ ## Similar projects
12
10
 
13
11
  1. [Inoxia](https://ixora.karawale.in/)
14
12
  2. [Silverbullet](https://silverbullet.md/)
@@ -34,8 +32,8 @@ it is not open sourse... _so i decide to create my own_.
34
32
  - [x] change: `codespan`
35
33
  - [ ] change: `br`
36
34
  - [x] change: `del`
37
- - [ ] change: `link`
38
- - [ ] change: `image`
35
+ - [x] change: `link`
36
+ - [x] change: `image`
39
37
  - [x] change: `text`
40
38
  - [ ] change: `tags`
41
39
 
@@ -50,4 +48,4 @@ it is not open sourse... _so i decide to create my own_.
50
48
  ## More ideas?
51
49
 
52
50
  Feel free to open an [issue](https://github.com/feraxhp/gnosis/issues)
53
- requesting new features.
51
+ requesting new features.
package/package.json CHANGED
@@ -1,20 +1,24 @@
1
1
  {
2
2
  "name": "@glifox/gnosis",
3
- "version": "0.0.1",
4
-
3
+ "version": "0.0.3",
5
4
  "author": "feraxhp",
6
5
  "license": "MIT",
7
6
  "main": "dist/gnosis.umd.js",
8
7
  "module": "dist/gnosis.mjs",
9
- "repository": { "type": "git", "url": "git+https://github.com/glifox/gnosis.git" },
10
- "bugs": { "url": "https://github.com/glifox/gnosis/issues" },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/glifox/gnosis.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/glifox/gnosis/issues"
14
+ },
11
15
  "homepage": "https://gnosis.feraxhp.com/",
12
16
  "files": [
13
17
  "dist",
14
18
  "README.md"
15
19
  ],
16
-
17
20
  "dependencies": {
21
+ "@catppuccin/palette": "^1.7.1",
18
22
  "@codemirror/lang-markdown": "^6.3.2",
19
23
  "@codemirror/language": "^6.10.8",
20
24
  "@codemirror/language-data": "^6.5.1",
@@ -23,18 +27,17 @@
23
27
  "@lezer/common": "^1.2.3",
24
28
  "@lezer/highlight": "^1.2.1",
25
29
  "@lezer/markdown": "^1.4.0",
26
- "codemirror": "^6.0.1"
30
+ "codemirror": "^6.0.1",
31
+ "thememirror": "^2.0.1"
27
32
  },
28
33
  "devDependencies": {
29
34
  "vite": "^6.0.7"
30
35
  },
31
-
32
36
  "scripts": {
33
- "start": "cd sample && vite --host",
34
- "preview": "cd sample && vite --port $PORT",
37
+ "start": "cd dev && vite --host",
38
+ "preview": "cd sample && vite --host",
35
39
  "build": "vite build"
36
40
  },
37
-
38
41
  "keywords": [
39
42
  "WYSIWYG",
40
43
  "markdown",
@@ -42,7 +45,6 @@
42
45
  "codemirror",
43
46
  "extension"
44
47
  ],
45
-
46
48
  "publishConfig": {
47
49
  "access": "public"
48
50
  }