@opentf/react-sandbox
Version:
The CodeSandbox sandpack wrapper with tabs layout.
59 lines • 1.46 kB
JSON
{
"name": "@opentf/react-sandbox",
"version": "0.15.0",
"description": "The CodeSandbox sandpack wrapper with tabs layout.",
"homepage": "",
"keywords": [
"react",
"sandbox",
"sandpack"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": "git@github.com:Open-Tech-Foundation/react-sandbox.git",
"author": "Thanga Ganapathy",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@opentf/eslint-config-base": "^0.2.0",
"@tsconfig/node-lts-strictest-esm": "^18.12.1",
"@types/react": "^18.2.72",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.0.2",
"typescript": "5.4.3"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.13.5",
"console-feed": "^3.5.0",
"strip-ansi": "^7.1.0"
},
"scripts": {
"build": "tsup",
"lint": "eslint src/** --fix",
"check-types": "tsc",
"ci": "pnpm build && pnpm lint && pnpm check-types",
"publish-packages": "pnpm run ci && changeset version && changeset publish"
}
}