mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
16ad5216db
* feat: react, vue3 and vanilla examples * fix: vue3 example * Create rare-worms-tease.md * fix: vue3 types * fix: vue3 ts checks * fix: vue3 render types * fix: vue3 component types
83 lines
1.7 KiB
JSON
83 lines
1.7 KiB
JSON
{
|
|
"name": "@bbob/preset-react",
|
|
"version": "4.0.2",
|
|
"description": "React preset to transform BBCode to React for @bbob/react",
|
|
"keywords": [
|
|
"bbob",
|
|
"preset",
|
|
"react"
|
|
],
|
|
"dependencies": {
|
|
"@bbob/preset-html5": "*",
|
|
"@bbob/types": "*"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "> 15.0"
|
|
},
|
|
"devDependencies": {
|
|
"react": "18.x",
|
|
"react-dom": "18.x",
|
|
"@types/react": "18.x"
|
|
},
|
|
"main": "lib/index.js",
|
|
"module": "es/index.js",
|
|
"jsnext:main": "es/index.js",
|
|
"browser": "dist/index.js",
|
|
"browserName": "BbobPresetReact",
|
|
"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",
|
|
"size": "2.5 KB"
|
|
}
|
|
],
|
|
"bundlesize": [
|
|
{
|
|
"path": "./dist/index.min.js",
|
|
"maxSize": "2.5 KB"
|
|
}
|
|
],
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"lib",
|
|
"src",
|
|
"es",
|
|
"types"
|
|
]
|
|
}
|