@gmb/bitmark-parser-generator 5.15.0 → 5.17.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.17.0",
4
4
  "description": "A bitmark parser and generator using Peggy.js",
5
5
  "author": "Get More Brain Ltd",
6
6
  "license": "ISC",
@@ -49,12 +49,14 @@
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",
55
56
  "start-parser": "tsx ./test/custom/dev/devParser.ts",
56
57
  "start-generator": "tsx ./test/custom/dev/devGenerator.ts",
57
58
  "start-prettify": "tsx ./test/custom/dev/devPrettify.ts",
59
+ "start-plain": "tsx ./test/custom/dev/devPlainTextParser.ts",
58
60
  "start-text-bitmark-body-parser": "tsx ./test/custom/dev/devTextBitmarkBodyParser.ts",
59
61
  "start-text-bitmark-body-generator": "tsx ./test/custom/dev/devTextBitmarkBodyGenerator.ts",
60
62
  "start-text-bitmark-tag-parser": "tsx ./test/custom/dev/devTextBitmarkTagParser.ts",
@@ -94,12 +96,16 @@
94
96
  "test-text-plain-tag-unbreakscape": "vitest run test/standard/text-plain-tag-unbreakscape.test.ts",
95
97
  "test-web-parser": "vitest run test/standard/web-parser.test.ts",
96
98
  "test-web-generator": "vitest run test/standard/web-generator.test.ts",
99
+ "test-plain-text-bitmark": "vitest run test/standard/plain-text-bitmark.test.ts",
100
+ "test-plain-text-body": "vitest run test/standard/plain-text-body.test.ts",
97
101
  "check": "npm run init && npm run typecheck && npm run lint",
98
102
  "typecheck": "tsc --noEmit",
99
103
  "lint": "eslint . --max-warnings 0",
100
104
  "lint-fix": "eslint . --fix",
101
105
  "regenerate-bitmark-test-json": "tsx ./test/custom/dev/devRegenerateBitmarkTestJson.ts",
102
106
  "regenerate-bitmark-test-bitmark": "tsx ./test/custom/dev/devRegenerateBitmarkTestBitmark.ts",
107
+ "regenerate-plain-text-from-bitmark": "tsx ./test/custom/dev/devRegeneratePlainTextFromBitmark.ts",
108
+ "regenerate-plain-text-from-text-body": "tsx ./test/custom/dev/devRegeneratePlainTextFromTextBody.ts",
103
109
  "prepublishOnly": "npm run clean && npm run build && npm run test",
104
110
  "clean": "tsx scripts/clean.ts",
105
111
  "ncu": "npx -y npm-check-updates -i",