mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
b09f4fa3c7
chore(release): release Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
88 lines
1.9 KiB
JSON
88 lines
1.9 KiB
JSON
{
|
|
"name": "@bbob/core",
|
|
"version": "4.2.0",
|
|
"description": "⚡️Blazing-fast js-bbcode-parser, bbcode js, that transforms and parses to AST with plugin support in pure javascript, no dependencies",
|
|
"keywords": [
|
|
"bbcode",
|
|
"fast",
|
|
"parser",
|
|
"bbcode parser",
|
|
"bbcodeparser",
|
|
"serializer",
|
|
"bbcode serializer",
|
|
"bbcode serializer",
|
|
"bbcodeserializer",
|
|
"parse",
|
|
"serialize",
|
|
"html",
|
|
"transform",
|
|
"bbob",
|
|
"core"
|
|
],
|
|
"dependencies": {
|
|
"@bbob/parser": "*",
|
|
"@bbob/plugin-helper": "*",
|
|
"@bbob/types": "*"
|
|
},
|
|
"main": "lib/index.js",
|
|
"module": "es/index.js",
|
|
"jsnext:main": "es/index.js",
|
|
"browser": "dist/index.js",
|
|
"browserName": "BbobCore",
|
|
"types": "types/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./types/index.d.ts",
|
|
"import": "./es/index.js",
|
|
"require": "./lib/index.js",
|
|
"browser": "./dist/index.min.js",
|
|
"umd": "./dist/index.min.js"
|
|
}
|
|
},
|
|
"homepage": "https://github.com/JiLiZART/bbob",
|
|
"author": "Nikolay Kostyurin <jilizart@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/JiLiZART/bbob/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/JiLiZART/bbob.git"
|
|
},
|
|
"scripts": {
|
|
"build:commonjs": "pkg-task",
|
|
"build:es": "pkg-task",
|
|
"build:umd": "pkg-task",
|
|
"build": "pkg-task",
|
|
"test": "pkg-task",
|
|
"cover": "pkg-task",
|
|
"lint": "pkg-task",
|
|
"size": "pkg-task",
|
|
"bundlesize": "pkg-task",
|
|
"types": "pkg-task",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"size-limit": [
|
|
{
|
|
"path": "./dist/index.min.js",
|
|
"limit": "4.5 KB"
|
|
}
|
|
],
|
|
"bundlesize": [
|
|
{
|
|
"path": "./dist/index.min.js",
|
|
"maxSize": "4.5 KB"
|
|
}
|
|
],
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"lib",
|
|
"src",
|
|
"es",
|
|
"types"
|
|
]
|
|
}
|