markdown-codec 1.1.25 → 1.2.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 +20 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markdown-codec",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Hand-written CommonMark+GFM <-> ContentDocument codec, built on document-schema.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -45,16 +45,25 @@
|
|
|
45
45
|
"node": ">=20"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
|
-
"build": "
|
|
48
|
+
"build": "turbo run _build",
|
|
49
|
+
"_build": "tsdown",
|
|
49
50
|
"prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
|
|
50
|
-
"lint": "
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
51
|
+
"lint": "turbo run _lint",
|
|
52
|
+
"_lint": "eslint . --fix --cache --max-warnings 0",
|
|
53
|
+
"typecheck": "turbo run _typecheck _typecheck:node",
|
|
54
|
+
"_typecheck": "tsc -p tsconfig.json",
|
|
55
|
+
"_typecheck:node": "tsc -p tsconfig.node.json",
|
|
56
|
+
"test": "turbo run _test",
|
|
57
|
+
"_test": "vitest run --project unit",
|
|
58
|
+
"test:workers": "turbo run _test:workers",
|
|
59
|
+
"_test:workers": "vitest run --config vitest.workers.config.ts",
|
|
54
60
|
"test:watch": "vitest --project unit",
|
|
55
|
-
"test:coverage": "
|
|
56
|
-
"
|
|
57
|
-
"test:
|
|
61
|
+
"test:coverage": "turbo run _test:coverage",
|
|
62
|
+
"_test:coverage": "vitest run --project unit --coverage",
|
|
63
|
+
"test:corpus": "turbo run _test:corpus",
|
|
64
|
+
"_test:corpus": "vitest run --project corpus",
|
|
65
|
+
"test:smoke": "turbo run _test:smoke",
|
|
66
|
+
"_test:smoke": "tsdown && vitest run --project smoke",
|
|
58
67
|
"prepare": "husky",
|
|
59
68
|
"release": "semantic-release"
|
|
60
69
|
},
|
|
@@ -70,7 +79,7 @@
|
|
|
70
79
|
"license": "MIT",
|
|
71
80
|
"packageManager": "pnpm@11.6.0",
|
|
72
81
|
"dependencies": {
|
|
73
|
-
"document-schema.js": "^2.5.
|
|
82
|
+
"document-schema.js": "^2.5.1",
|
|
74
83
|
"zod": "^4.4.3"
|
|
75
84
|
},
|
|
76
85
|
"devDependencies": {
|
|
@@ -90,6 +99,7 @@
|
|
|
90
99
|
"publint": "^0.3.21",
|
|
91
100
|
"semantic-release": "^25.0.8",
|
|
92
101
|
"tsdown": "^0.22.13",
|
|
102
|
+
"turbo": "^2.10.8",
|
|
93
103
|
"typescript": "^6.0.3",
|
|
94
104
|
"typescript-eslint": "^8.65.0",
|
|
95
105
|
"vitest": "^4.1.10"
|