@storyblok/richtext
Version:
Storyblok RichText Resolver
102 lines (101 loc) • 2.86 kB
JSON
{
"name": "@storyblok/richtext",
"type": "module",
"version": "3.3.0",
"packageManager": "pnpm@10.2.0",
"description": "Storyblok RichText Resolver",
"author": "Alvaro Saburido <hola@alvarosaburido.dev> (https://github.com/alvarosabu/)",
"license": "MIT",
"homepage": "https://github.com/storyblok/richtext#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/storyblok/richtext.git"
},
"keywords": [
"storyblok",
"richtext",
"resolver"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/storyblok-richtext.es.js",
"require": "./dist/storyblok-richtext.umd.js"
}
},
"main": "./dist/storyblok-richtext.es.js",
"module": "./dist/storyblok-richtext.js",
"types": "./dist/index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:packages": "pnpm -r --filter='./packages/*' run build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:packages": "pnpm -r --parallel --filter='./packages/*' run lint",
"lint:packages:fix": "pnpm -r --parallel --filter='./packages/*' run lint:fix",
"test": "vitest",
"test:ci": "vitest run",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"playground": "cd playground && npm run dev",
"playground:vue": "cd playground/vue && npm run dev",
"playground:react": "cd playground/react && npm run dev",
"playground:all": "pnpm -r --parallel --filter='./playground/*' run dev",
"release": "release-it",
"release:dry": "release-it --dry-run",
"check-licenses": "node scripts/license-checker.mjs"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@storyblok/eslint-config": "^0.3.0",
"@storyblok/vue": "^9.0.0",
"@vitejs/plugin-basic-ssl": "^2.0.0",
"@vitest/coverage-v8": "^3.2.1",
"@vitest/ui": "^3.2.1",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-vue": "^9.32.0",
"kolorist": "^1.8.0",
"license-checker": "^25.0.1",
"lint-staged": "^15.4.3",
"pathe": "^2.0.2",
"prettier": "^3.4.2",
"release-it": "^19.0.3",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-dts": "4.5.4",
"vite-plugin-inspect": "^11.1.0",
"vite-plugin-qrcode": "^0.2.4",
"vitest": "^3.2.1",
"vue": "^3.5.16"
},
"pnpm": {
"onlyBuiltDependencies": [
"cypress"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
2,
"always",
200
]
}
}
}