@kevinpeckham/barkdown 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.
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@kevinpeckham/barkdown",
3
+ "version": "0.1.0",
4
+ "description": "Markdown ⇄ DOM round-trip codec, guaranteed to invert marked. Canonical identity, fixed-point convergence, footnote fidelity, and no silent loss — the serializer half of an editable-markdown pipeline.",
5
+ "author": "Kevin Peckham",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "main": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "sideEffects": false,
22
+ "scripts": {
23
+ "audit": "bunx fallow audit",
24
+ "build": "tsc -p tsconfig.build.json",
25
+ "check": "tsc --noEmit",
26
+ "format": "bunx biome format --write .",
27
+ "health": "bunx fallow health",
28
+ "lint": "bunx biome lint --write .",
29
+ "prepublishOnly": "bun run check && bun test && bun run build",
30
+ "test": "bun test"
31
+ },
32
+ "keywords": [
33
+ "markdown",
34
+ "marked",
35
+ "serializer",
36
+ "round-trip",
37
+ "contenteditable",
38
+ "wysiwyg",
39
+ "gfm",
40
+ "footnotes",
41
+ "dom",
42
+ "codec"
43
+ ],
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "git+https://github.com/kevinpeckham/barkdown.git"
47
+ },
48
+ "homepage": "https://github.com/kevinpeckham/barkdown",
49
+ "peerDependencies": {
50
+ "marked": "^18.0.0",
51
+ "marked-footnote": "^1.4.0"
52
+ },
53
+ "devDependencies": {
54
+ "@biomejs/biome": "^2.5.1",
55
+ "@types/bun": "^1.3.14",
56
+ "fallow": "^3.0.0",
57
+ "fast-check": "^3.23.0",
58
+ "happy-dom": "^20.10.6",
59
+ "linkedom": "^0.18.5",
60
+ "marked": "^18.0.5",
61
+ "marked-footnote": "^1.4.0",
62
+ "typescript": "^5.7.0",
63
+ "varlock": "^1.9.0"
64
+ },
65
+ "engines": {
66
+ "node": ">=18"
67
+ },
68
+ "bugs": {
69
+ "url": "https://github.com/kevinpeckham/barkdown/issues"
70
+ },
71
+ "publishConfig": {
72
+ "access": "public"
73
+ }
74
+ }