flappa-doormal 2.19.0 → 2.20.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/AGENTS.md +40 -11
- package/README.md +292 -11
- package/dist/index.d.mts +295 -70
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1386 -251
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -3
package/package.json
CHANGED
|
@@ -47,14 +47,18 @@
|
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"build": "tsdown",
|
|
50
|
+
"dictionary:export-options": "bun scripts/export-dictionary-book-options.ts",
|
|
51
|
+
"dictionary:extract-fixtures": "bun scripts/extract-dictionary-test-fixtures.ts",
|
|
52
|
+
"dictionary:preview-html": "bun scripts/generate-dictionary-html-previews.ts",
|
|
53
|
+
"dictionary:scan": "bun scripts/analyze-dictionary-profile.ts",
|
|
54
|
+
"dictionary:split-csv": "bun scripts/split-dictionary-csvs.ts",
|
|
50
55
|
"format": "biome format --write",
|
|
51
56
|
"lint": "biome check",
|
|
52
57
|
"postbuild": "bun run test:exports",
|
|
53
|
-
"test": "bun test",
|
|
54
58
|
"test:exports": "bunx tsc --ignoreConfig --noEmit testing/exports.test.ts --moduleResolution bundler --target esnext --module esnext --esModuleInterop --skipLibCheck --types bun-types,node && bun test testing/exports.test.ts",
|
|
55
|
-
"test:perf": "RUN_PERF=true bun test src/segmentation/segmenter.perf.test.ts src/validation/validate.perf.test.ts"
|
|
59
|
+
"test:perf": "RUN_PERF=true bun test src/segmentation/segmenter.perf.test.ts src/dictionary/heading-classifier.perf.test.ts src/dictionary/runtime.perf.test.ts src/validation/validate.perf.test.ts"
|
|
56
60
|
},
|
|
57
61
|
"type": "module",
|
|
58
62
|
"types": "./dist/index.d.mts",
|
|
59
|
-
"version": "2.
|
|
63
|
+
"version": "2.20.0"
|
|
60
64
|
}
|