2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-15 11:59:37 +03:00
Files
github-actions[bot] 5904ef46ed chore(release): publish v4.3.1 (#298)
chore(release): release

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-10-17 14:36:07 +02:00

68 lines
1.5 KiB
JSON

{
"name": "@bbob/cli",
"version": "4.3.1",
"description": "Comand line bbcode parser",
"bin": {
"bbob": "lib/cli.js"
},
"main": "lib/index.js",
"module": "es/index.mjs",
"jsnext:main": "es/index.mjs",
"browser": "dist/index.js",
"browserName": "BbobCli",
"types": "types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./types/index.d.mts",
"default": "./es/index.mjs"
},
"require": {
"types": "./types/index.d.ts",
"default": "./lib/index.js"
},
"browser": "./dist/index.min.js",
"umd": "./dist/index.min.js"
}
},
"dependencies": {
"@bbob/html": "*",
"@bbob/preset-html5": "*"
},
"devDependencies": {
"@types/node": "20.11.30"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JiLiZART/bbob.git"
},
"keywords": [
"bbob",
"cli",
"bbcode",
"pipe"
],
"bugs": {
"url": "https://github.com/JiLiZART/bbob/issues"
},
"homepage": "https://github.com/JiLiZART/bbob#readme",
"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"
},
"author": "Nikolay Kostyurin <jilizart@gmail.com>",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}