@jsoneditor/react
Version:
React wrapper of https://github.com/josdejong/jsoneditor
46 lines • 1.25 kB
JSON
{
"name": "@jsoneditor/react",
"version": "0.2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"private": false,
"description": "React wrapper of https://github.com/josdejong/jsoneditor",
"repository": {
"type": "git",
"url": "https://github.com/KyungJuneKim/react-jsoneditor.git",
"directory": "packages/core"
},
"keywords": [
"react",
"json",
"viewer",
"eidtor"
],
"license": "ISC",
"dependencies": {
"utility-types": "^3.10.0",
"vanilla-jsoneditor": "^0.15.1"
},
"devDependencies": {
"@devsisters/eslint-plugin-web": "^1.3.0",
"@types/react": "^18.0.17",
"eslint": "^7.32.0",
"react": "^18.2.0",
"tsup": "^6.6.3",
"typescript": "^4.5.2",
"@jsoneditor/tsconfig": "0.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts --external react utility-types vanilla-jsoneditor",
"dev": "tsup src/index.ts --format esm --watch --dts --external react utility-types vanilla-jsoneditor",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"lint": "eslint 'src/**/*.{ts,js}*'"
}
}