@yozora/tokenizer-math
Version:
Tokenizer for processing fenced math block (formulas)
55 lines • 1.47 kB
JSON
{
"name": "@yozora/tokenizer-math",
"version": "2.3.16",
"description": "Tokenizer for processing fenced math block (formulas)",
"author": {
"name": "guanghechen",
"url": "https://github.com/guanghechen/"
},
"repository": {
"type": "git",
"url": "https://github.com/yozorajs/yozora.git",
"directory": "tokenizers/math"
},
"homepage": "https://github.com/yozorajs/yozora/tree/v2.3.13/tokenizers/math#readme",
"keywords": [
"yozora",
"markdown",
"tokenizer",
"math",
"formula",
"fenced math block"
],
"type": "module",
"exports": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.mjs",
"require": "./lib/cjs/index.cjs"
},
"source": "./src/index.ts",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.cjs",
"module": "./lib/esm/index.mjs",
"license": "MIT",
"files": [
"lib/",
"!lib/**/*.map",
"package.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"dependencies": {
"@yozora/character": "^2.3.16",
"@yozora/ast": "^2.3.16",
"@yozora/core-tokenizer": "^2.3.16",
"@yozora/tokenizer-fenced-block": "^2.3.16"
},
"scripts": {
"build": "rollup -c ../../rollup.config.mjs",
"clean": "rimraf lib",
"test": "vitest run --config ../../vitest.config.ts",
"test:coverage": "vitest run --config ../../vitest.config.ts --coverage",
"test:update": "vitest run --config ../../vitest.config.ts -u"
}
}