@type32/codemirror-rich-obsidian-editor 0.0.15 → 0.0.17

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/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@type32/codemirror-rich-obsidian-editor",
3
3
  "configKey": "cmOfmEditor",
4
- "version": "0.0.15",
4
+ "version": "0.0.17",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
package/dist/module.mjs CHANGED
@@ -9,6 +9,7 @@ const module = defineNuxtModule({
9
9
  defaults: {},
10
10
  setup(_options, _nuxt) {
11
11
  const resolver = createResolver(import.meta.url);
12
+ _nuxt.options.build.transpile.push("alfaaz", "js-yaml");
12
13
  _nuxt.options.alias["#codemirror-rich-obsidian-editor"] = resolver.resolve(
13
14
  "./runtime/editor/types"
14
15
  );
package/package.json CHANGED
@@ -1,86 +1,89 @@
1
1
  {
2
- "name": "@type32/codemirror-rich-obsidian-editor",
3
- "version": "0.0.15",
4
- "description": "OFM Editor Component for Nuxt.",
5
- "repository": "Type-32/codemirror-rich-obsidian",
6
- "license": "MIT",
7
- "type": "module",
8
- "private": false,
9
- "exports": {
10
- ".": {
11
- "types": "./dist/types.d.mts",
12
- "import": "./dist/module.mjs"
13
- }
14
- },
15
- "main": "./dist/module.mjs",
16
- "typesVersions": {
17
- "*": {
18
- ".": [
19
- "./dist/types.d.mts"
20
- ]
21
- }
22
- },
23
- "files": [
24
- "dist"
25
- ],
26
- "scripts": {
27
- "prepack": "bunx nuxt-module-build build",
28
- "dev": "bun run dev:prepare && bunx nuxi dev playground",
29
- "dev:build": "bunx nuxi build playground",
30
- "dev:prepare": "bunx nuxt-module-build build --stub && bunx nuxt-module-build prepare && bunx nuxi prepare playground",
31
- "release": "bun run prepack && bunx changelogen --release && bun publish && git push --follow-tags",
32
- "lint": "bunx eslint .",
33
- "test": "bunx vitest run",
34
- "test:watch": "bunx vitest watch",
35
- "test:types": "bunx vue-tsc --noEmit && cd playground && bunx vue-tsc --noEmit"
36
- },
37
- "dependencies": {
38
- "@codemirror/autocomplete": "^6.18.7",
39
- "@codemirror/lang-json": "^6.0.2",
40
- "@codemirror/lang-markdown": "^6.3.4",
41
- "@codemirror/lang-yaml": "^6.1.2",
42
- "@codemirror/language": "^6.11.3",
43
- "@codemirror/language-data": "^6.5.1",
44
- "@hsorby/vue3-katex": "0.6.0-rc.7",
45
- "@lezer/markdown": "^1.4.3",
46
- "@nuxt/image": "1.10.0",
47
- "@nuxt/kit": "^4.1.2",
48
- "@nuxt/ui": "^4.0.0-alpha.2",
49
- "alfaaz": "^1.1.0",
50
- "codemirror": "^6.0.2",
51
- "js-yaml": "^4.1.0",
52
- "katex": "^0.16.22",
53
- "lezer-markdown-obsidian": "^0.0.3",
54
- "markdown-it": "^14.1.0",
55
- "markdown-it-obsidian-callouts": "^0.3.2",
56
- "vue-codemirror6": "^1.3.22"
57
- },
58
- "devDependencies": {
59
- "@iconify-json/lucide": "^1.2.68",
60
- "@iconify-json/simple-icons": "^1.2.52",
61
- "@nuxt/devtools": "^2.6.3",
62
- "@nuxt/eslint-config": "^1.9.0",
63
- "@nuxt/fonts": "0.11.4",
64
- "@nuxt/icon": "1.15.0",
65
- "@nuxt/module-builder": "^1.0.2",
66
- "@nuxt/schema": "^4.1.2",
67
- "@nuxt/test-utils": "^3.19.2",
68
- "@types/js-yaml": "^4.0.9",
69
- "@types/node": "latest",
70
- "changelogen": "^0.6.2",
71
- "eslint": "^9.35.0",
72
- "nuxt": "^4.1.2",
73
- "typescript": "~5.9.2",
74
- "vitest": "^3.2.4",
75
- "vue-tsc": "^3.0.7"
76
- },
77
- "trustedDependencies": [
78
- "@parcel/watcher",
79
- "@tailwindcss/oxide",
80
- "core-js",
81
- "esbuild",
82
- "sharp",
83
- "unrs-resolver",
84
- "vue-demi"
85
- ]
2
+ "name": "@type32/codemirror-rich-obsidian-editor",
3
+ "version": "0.0.17",
4
+ "description": "OFM Editor Component for Nuxt.",
5
+ "repository": "Type-32/codemirror-rich-obsidian",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "private": false,
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/types.d.mts",
12
+ "import": "./dist/module.mjs"
13
+ }
14
+ },
15
+ "main": "./dist/module.mjs",
16
+ "typesVersions": {
17
+ "*": {
18
+ ".": [
19
+ "./dist/types.d.mts"
20
+ ]
21
+ }
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "scripts": {
27
+ "prepack": "bunx nuxt-module-build build",
28
+ "dev": "bun run dev:prepare && bunx nuxi dev playground",
29
+ "dev:build": "bunx nuxi build playground",
30
+ "dev:prepare": "bunx nuxt-module-build build --stub && bunx nuxt-module-build prepare && bunx nuxi prepare playground",
31
+ "release": "bun run prepack && bunx changelogen --release && bun publish && git push --follow-tags",
32
+ "lint": "bunx eslint .",
33
+ "test": "bunx vitest run",
34
+ "test:watch": "bunx vitest watch",
35
+ "test:types": "bunx vue-tsc --noEmit && cd playground && bunx vue-tsc --noEmit"
36
+ },
37
+ "dependencies": {
38
+ "@codemirror/autocomplete": "^6.18.7",
39
+ "@codemirror/lang-json": "^6.0.2",
40
+ "@codemirror/lang-markdown": "^6.3.4",
41
+ "@codemirror/lang-yaml": "^6.1.2",
42
+ "@codemirror/language": "^6.11.3",
43
+ "@codemirror/language-data": "^6.5.1",
44
+ "@hsorby/vue3-katex": "0.6.0-rc.7",
45
+ "@lezer/markdown": "^1.4.3",
46
+ "@nuxt/image": "1.10.0",
47
+ "@nuxt/kit": "^4.1.2",
48
+ "@nuxt/ui": "^4.0.0-alpha.2",
49
+ "alfaaz": "^1.1.0",
50
+ "codemirror": "^6.0.2",
51
+ "js-yaml": "^4.1.0",
52
+ "katex": "^0.16.22",
53
+ "lezer-markdown-obsidian": "^0.0.3",
54
+ "markdown-it": "^14.1.0",
55
+ "markdown-it-obsidian-callouts": "^0.3.2",
56
+ "vue-codemirror6": "^1.3.22"
57
+ },
58
+ "devDependencies": {
59
+ "@iconify-json/lucide": "^1.2.68",
60
+ "@iconify-json/simple-icons": "^1.2.52",
61
+ "@nuxt/devtools": "^2.6.3",
62
+ "@nuxt/eslint-config": "^1.9.0",
63
+ "@nuxt/fonts": "0.11.4",
64
+ "@nuxt/icon": "1.15.0",
65
+ "@nuxt/module-builder": "^1.0.2",
66
+ "@nuxt/schema": "^4.1.2",
67
+ "@nuxt/test-utils": "^3.19.2",
68
+ "@types/js-yaml": "^4.0.9",
69
+ "@types/node": "latest",
70
+ "changelogen": "^0.6.2",
71
+ "eslint": "^9.35.0",
72
+ "nuxt": "^4.1.2",
73
+ "typescript": "~5.9.2",
74
+ "vitest": "^3.2.4",
75
+ "vue-tsc": "^3.0.7",
76
+ "alfaaz": "^1.1.0"
77
+ },
78
+ "trustedDependencies": [
79
+ "@parcel/watcher",
80
+ "@tailwindcss/oxide",
81
+ "core-js",
82
+ "esbuild",
83
+ "sharp",
84
+ "unrs-resolver",
85
+ "vue-demi",
86
+ "js-yaml",
87
+ "alfaaz"
88
+ ]
86
89
  }