@orkestrel/markdown 0.0.10 → 0.0.12
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/src/core/index.cjs +824 -222
- package/dist/src/core/index.cjs.map +1 -1
- package/dist/src/core/index.d.cts +439 -65
- package/dist/src/core/index.d.ts +439 -65
- package/dist/src/core/index.js +815 -223
- package/dist/src/core/index.js.map +1 -1
- package/package.json +16 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkestrel/markdown",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "A types-first markdown layer over @orkestrel/html — typed AST, both conversion directions, and sanitized HTML by default.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ast",
|
|
@@ -55,31 +55,36 @@
|
|
|
55
55
|
"format": "oxfmt --config .oxfmtrc.json --write .",
|
|
56
56
|
"format:check": "oxfmt --config .oxfmtrc.json --check .",
|
|
57
57
|
"lint:check": "oxlint --config .oxlintrc.json --deny-warnings .",
|
|
58
|
-
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:guides",
|
|
58
|
+
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:setup && npm run test:guides",
|
|
59
59
|
"test:src": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
|
|
60
60
|
"test:src:core": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
|
|
61
61
|
"test:policy": "vitest run --config vite.config.ts --no-cache --reporter=dot --project policy",
|
|
62
62
|
"test:config": "vitest run --config vite.config.ts --no-cache --reporter=dot --project config",
|
|
63
|
-
"test:guides": "vitest run --config vite.config.ts --reporter=dot --project guides",
|
|
63
|
+
"test:guides": "vitest run --config vite.config.ts --no-cache --reporter=dot --project guides",
|
|
64
64
|
"build": "npm run clean && npm run build:src",
|
|
65
65
|
"build:src": "npm run build:src:core",
|
|
66
66
|
"build:src:core": "vite build --config configs/src/vite.core.config.ts && npm run copy dist/src/core/index.d.ts dist/src/core/index.d.cts",
|
|
67
|
-
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test"
|
|
67
|
+
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:distribution -- --mode release",
|
|
68
|
+
"test:distribution": "vitest run --config vite.config.ts --no-cache --reporter=dot --project distribution",
|
|
69
|
+
"test:probe": "vitest run --config vite.config.ts --no-cache --reporter=verbose --project probe",
|
|
70
|
+
"test:bench": "vitest bench --config vite.config.ts --no-cache --project probe",
|
|
71
|
+
"prepack": "npm run build",
|
|
72
|
+
"test:setup": "vitest run --config vite.config.ts --no-cache --reporter=dot --project setup"
|
|
68
73
|
},
|
|
69
74
|
"dependencies": {
|
|
70
75
|
"@orkestrel/contract": "^0.0.13",
|
|
71
|
-
"@orkestrel/html": "^0.0.
|
|
76
|
+
"@orkestrel/html": "^0.0.7"
|
|
72
77
|
},
|
|
73
78
|
"devDependencies": {
|
|
74
79
|
"@microsoft/api-extractor": "^7.59.0",
|
|
75
|
-
"@orkestrel/guide": "^0.0.
|
|
76
|
-
"@orkestrel/probe": "^0.0.
|
|
77
|
-
"@orkestrel/scaffold": "^0.0.
|
|
80
|
+
"@orkestrel/guide": "^0.0.14",
|
|
81
|
+
"@orkestrel/probe": "^0.0.6",
|
|
82
|
+
"@orkestrel/scaffold": "^0.0.53",
|
|
78
83
|
"@orkestrel/test": "^0.0.11",
|
|
79
|
-
"@types/node": "^26.
|
|
84
|
+
"@types/node": "^26.3.0",
|
|
80
85
|
"@vitest/browser-playwright": "^4.1.11",
|
|
81
|
-
"oxfmt": "^0.
|
|
82
|
-
"oxlint": "^1.
|
|
86
|
+
"oxfmt": "^0.65.0",
|
|
87
|
+
"oxlint": "^1.80.0",
|
|
83
88
|
"typescript": "^6.0.3",
|
|
84
89
|
"vite": "^8.2.2",
|
|
85
90
|
"vite-plugin-dts": "^5.0.3",
|