storyblok-js-client
Version:
Universal JavaScript SDK for Storyblok's API
90 lines • 2.31 kB
JSON
{
"name": "storyblok-js-client",
"type": "module",
"version": "7.2.2",
"description": "Universal JavaScript SDK for Storyblok's API",
"author": "Alexander Feiglstorfer <delooks@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/storyblok/monoblok/tree/main/packages/js-client#readme",
"repository": {
"type": "git",
"url": "https://github.com/storyblok/monoblok.git",
"directory": "packages/js-client"
},
"bugs": {
"url": "https://github.com/storyblok/monoblok/issues"
},
"keywords": [
"storyblok",
"javascript",
"api"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"types": "./dist/index.d.cts",
"source": "src/index.ts",
"files": [
"dist",
"src"
],
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@tsconfig/recommended": "^1.0.8",
"@vitest/coverage-v8": "^3.1.3",
"@vitest/ui": "^3.1.3",
"eslint": "^9.26.0",
"tsdown": "^0.12.9",
"typescript": "5.8.3",
"vite": "^7.0.6",
"vitest": "^3.1.3",
"@storyblok/eslint-config": "0.4.1"
},
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
]
},
"publishConfig": {
"access": "public"
},
"nx": {
"implicitDependencies": [
"!@storyblok/playground-*"
]
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"test:types": "tsc --noEmit --skipLibCheck",
"test": "pnpm run test:unit:ci && pnpm run test:e2e",
"test:unit": "vitest",
"test:unit:ci": "vitest run",
"test:unit:ui": "vitest --ui",
"test:e2e": "vitest run -c vitest.config.e2e.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"playground": "pnpm run --filter ./playground/vanilla dev",
"playground:svelte": "pnpm run --filter ./playground/svelte dev",
"playground:next": "pnpm run --filter ./playground/nextjs dev",
"dev:umd": "npx serve ./",
"coverage": "vitest run --coverage"
}
}