| author | |
| committer | |
| log | 851543ddbf208cf4588952869704aa35fa43053d |
| tree | fa8cae047fd19c5b836705fe5da06bfc91201acc |
| parent | cdd0952e19e387d2530aa684e361ddc0b1d64967 |
| signature |
9 files changed, 86 insertions(+), 5 deletions(-)
.gitignore+1| ... | ... | @@ -1,4 +1,5 @@ |
| 1 | 1 | /target |
| 2 | 2 | /lib/bindgen |
| 3 | 3 | /lib/node_modules |
| 4 | /lib/README.md | |
| 4 | 5 | .tmp |
Cargo.lock+1-1| ... | ... | @@ -401,7 +401,7 @@ dependencies = [ |
| 401 | 401 | |
| 402 | 402 | [[package]] |
| 403 | 403 | name = "markodown" |
| 404 | version = "1.0.0" | |
| 404 | version = "0.0.0" | |
| 405 | 405 | dependencies = [ |
| 406 | 406 | "clap", |
| 407 | 407 | "markdown-it", |
Cargo.toml-1| ... | ... | @@ -1,6 +1,5 @@ |
| 1 | 1 | [package] |
| 2 | 2 | name = "markodown" |
| 3 | version = "1.0.0" | |
| 4 | 3 | edition = "2024" |
| 5 | 4 | |
| 6 | 5 | [lib] |
LICENSE created+15| ... | ... | @@ -0,0 +1,15 @@ |
| 1 | ISC License | |
| 2 | ||
| 3 | Copyright 2026 clover caruso | |
| 4 | ||
| 5 | Permission to use, copy, modify, and/or distribute this software for any purpose | |
| 6 | with or without fee is hereby granted, provided that the above copyright notice | |
| 7 | and this permission notice appear in all copies. | |
| 8 | ||
| 9 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | |
| 10 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND | |
| 11 | FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | |
| 12 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS | |
| 13 | OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | |
| 14 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF | |
| 15 | THIS SOFTWARE. |
lib/LICENSE created+15| ... | ... | @@ -0,0 +1,15 @@ |
| 1 | ISC License | |
| 2 | ||
| 3 | Copyright 2026 clover caruso | |
| 4 | ||
| 5 | Permission to use, copy, modify, and/or distribute this software for any purpose | |
| 6 | with or without fee is hereby granted, provided that the above copyright notice | |
| 7 | and this permission notice appear in all copies. | |
| 8 | ||
| 9 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | |
| 10 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND | |
| 11 | FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | |
| 12 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS | |
| 13 | OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | |
| 14 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF | |
| 15 | THIS SOFTWARE. |
lib/jsr.json+13-3| ... | ... | @@ -1,13 +1,23 @@ |
| 1 | 1 | { |
| 2 | 2 | "name": "@clo/markodown", |
| 3 | "version": "1.0.0-rc.1", | |
| 4 | "license": "MIT", | |
| 3 | "version": "1.0.0-rc.3", | |
| 4 | "license": "ISC", | |
| 5 | 5 | "exports": { |
| 6 | 6 | ".": "./mod.ts", |
| 7 | 7 | "./esbuild.ts": "./esbuild.ts", |
| 8 | 8 | "./rollup.ts": "./rollup.ts" |
| 9 | 9 | }, |
| 10 | 10 | "imports": { |
| 11 | "@marko/compiler": "@marko/compiler@^5.39.55" | |
| 11 | "@marko/compiler": "npm:@marko/compiler@^5", | |
| 12 | "esbuild": "npm:esbuild@0.x", | |
| 13 | "rollup": "npm:rollup@^4" | |
| 14 | }, | |
| 15 | "publish": { | |
| 16 | "exclude": [ | |
| 17 | "!bindgen", | |
| 18 | "!README.md", | |
| 19 | "package-lock.json", | |
| 20 | "package.json" | |
| 21 | ] | |
| 12 | 22 | } |
| 13 | 23 | } |
lib/package-lock.json+1| ... | ... | @@ -10,6 +10,7 @@ |
| 10 | 10 | "browserslist": "^4.28.1", |
| 11 | 11 | "esbuild": "^0.27.3", |
| 12 | 12 | "marko": "^5.38.24", |
| 13 | "rollup": "^4.57.1", | |
| 13 | 14 | "vite": "^7.3.1", |
| 14 | 15 | "vitest": "^4.0.18" |
| 15 | 16 | } |
lib/package.json+1| ... | ... | @@ -5,6 +5,7 @@ |
| 5 | 5 | "browserslist": "^4.28.1", |
| 6 | 6 | "esbuild": "^0.27.3", |
| 7 | 7 | "marko": "^5.38.24", |
| 8 | "rollup": "^4.57.1", | |
| 8 | 9 | "vite": "^7.3.1", |
| 9 | 10 | "vitest": "^4.0.18" |
| 10 | 11 | } |
lib/package.npm.json created+39| ... | ... | @@ -0,0 +1,39 @@ |
| 1 | { | |
| 2 | "name": "@paperclover/markodown", | |
| 3 | "version": "1.0.0-rc.3", | |
| 4 | "homepage": "https://git.paperclover.net/clo/markodown", | |
| 5 | "type": "module", | |
| 6 | "peerDependencies": { | |
| 7 | "@marko/compiler": "^5", | |
| 8 | "esbuild": "0.x", | |
| 9 | "rollup": "^4" | |
| 10 | }, | |
| 11 | "publishConfig": { | |
| 12 | "access": "public" | |
| 13 | }, | |
| 14 | "peerDependenciesMeta": { | |
| 15 | "@marko/compiler": { | |
| 16 | "optional": true | |
| 17 | }, | |
| 18 | "esbuild": { | |
| 19 | "optional": true | |
| 20 | }, | |
| 21 | "rollup": { | |
| 22 | "optional": true | |
| 23 | } | |
| 24 | }, | |
| 25 | "exports": { | |
| 26 | ".": { | |
| 27 | "types": "./_dist/mod.d.ts", | |
| 28 | "default": "./mod.js" | |
| 29 | }, | |
| 30 | "./esbuild.ts": { | |
| 31 | "types": "./_dist/esbuild.d.ts", | |
| 32 | "default": "./esbuild.js" | |
| 33 | }, | |
| 34 | "./rollup.ts": { | |
| 35 | "types": "./_dist/rollup.d.ts", | |
| 36 | "default": "./rollup.js" | |
| 37 | } | |
| 38 | } | |
| 39 | } |