@gmb/bitmark-parser-generator 5.15.0 → 5.16.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gmb/bitmark-parser-generator",
3
- "version": "5.15.0",
3
+ "version": "5.16.0",
4
4
  "description": "A bitmark parser and generator using Peggy.js",
5
5
  "author": "Get More Brain Ltd",
6
6
  "license": "ISC",
@@ -49,6 +49,7 @@
49
49
  ],
50
50
  "scripts": {
51
51
  "init": "tsx scripts/init.ts",
52
+ "cli": "tsx ./src/cli/launcher.ts",
52
53
  "start": "npm run start-parser",
53
54
  "start-info": "tsx ./test/custom/dev/devInfo.ts",
54
55
  "start-generate-config": "tsx ./test/custom/dev/devGenerateConfig.ts",
@@ -94,12 +95,16 @@
94
95
  "test-text-plain-tag-unbreakscape": "vitest run test/standard/text-plain-tag-unbreakscape.test.ts",
95
96
  "test-web-parser": "vitest run test/standard/web-parser.test.ts",
96
97
  "test-web-generator": "vitest run test/standard/web-generator.test.ts",
98
+ "test-plain-text-bitmark": "vitest run test/standard/plain-text-bitmark.test.ts",
99
+ "test-plain-text-body": "vitest run test/standard/plain-text-body.test.ts",
97
100
  "check": "npm run init && npm run typecheck && npm run lint",
98
101
  "typecheck": "tsc --noEmit",
99
102
  "lint": "eslint . --max-warnings 0",
100
103
  "lint-fix": "eslint . --fix",
101
104
  "regenerate-bitmark-test-json": "tsx ./test/custom/dev/devRegenerateBitmarkTestJson.ts",
102
105
  "regenerate-bitmark-test-bitmark": "tsx ./test/custom/dev/devRegenerateBitmarkTestBitmark.ts",
106
+ "regenerate-plain-text-from-bitmark": "tsx ./test/custom/dev/devRegeneratePlainTextFromBitmark.ts",
107
+ "regenerate-plain-text-from-text-body": "tsx ./test/custom/dev/devRegeneratePlainTextFromTextBody.ts",
103
108
  "prepublishOnly": "npm run clean && npm run build && npm run test",
104
109
  "clean": "tsx scripts/clean.ts",
105
110
  "ncu": "npx -y npm-check-updates -i",