UNPKG

remark-sandpack

Version:
81 lines 1.98 kB
{ "name": "remark-sandpack", "version": "0.0.5", "description": "Use sandpack in MDX", "keywords": [ "remark", "sandpack", "MDX" ], "homepage": "https://github.com/Xwil/remark-sandpack#readme", "bugs": { "url": "https://github.com/Xwil/remark-sandpack/issues" }, "repository": { "type": "git", "url": "git+https://github.com/Xwil/remark-sandpack.git" }, "license": "MIT", "author": "Xwil <xw5427@gmail.com>", "sideEffects": false, "type": "module", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" } }, "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist" ], "lint-staged": { "*.(js|ts|tsx|jsx)": [ "prettier --write", "eslint --fix", "eslint" ] }, "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "dependencies": { "estree-util-value-to-estree": "^2.0.0", "fs-readdir-recursive": "^1.1.0", "unist-util-visit": "^4.1.1" }, "devDependencies": { "@babel/types": "^7.19.4", "@types/fs-readdir-recursive": "^1.1.0", "@types/node": "^18.11.0", "@typescript-eslint/eslint-plugin": "^5.40.0", "@typescript-eslint/parser": "^5.40.0", "bumpp": "^8.2.1", "cz-conventional-changelog": "^3.3.0", "eslint": "^8.25.0", "eslint-config-alloy": "^4.7.0", "eslint-define-config": "^1.7.0", "eslint-plugin-prettier": "^4.2.1", "husky": "^8.0.1", "prettier": "^2.7.1", "rimraf": "^3.0.2", "tsup": "^8.2.4", "tsx": "^3.10.1", "typescript": "^5.5.4", "unbuild": "^0.9.4", "vitest": "^0.24.3" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "lint": "eslint --ext .js,.ts,.tsx .", "release": "bumpp --commit --push --tag && pnpm publish", "start": "tsx src/index.ts", "test": "vitest", "typecheck": "tsc --noEmit" } }