UNPKG

datocms-plugin-json-table

Version:

A plugin for DatoCMS that makes it possible to add/insert a key and value and output a simple JSON table

109 lines (108 loc) 2.63 kB
{ "name": "datocms-plugin-json-table", "homepage": "https://github.com/voorhoede/datocms-plugin-json-table", "version": "2.2.0", "description": "A plugin for DatoCMS that makes it possible to add/insert a key and value and output a simple JSON table", "engines": { "node": ">=18.0.0" }, "scripts": { "start": "cross-env BROWSER='none' PUBLIC_URL='/' webpack-dev-server --mode=development", "build": "cross-env PUBLIC_URL='.' webpack --mode=production", "prettier": "prettier --write .", "pre-commit": "npm run prettier", "prepack": "npm run build", "prepare": "husky", "postversion": "git push --follow-tags" }, "dependencies": { "@types/lodash": "^4.17.7", "@types/node": "^20.14.12", "@types/react": "^18.3.3", "@types/react-dom": "^18.3.0", "codemirror": "^5.65.20", "datocms-plugin-sdk": "^1.1.0", "datocms-react-ui": "^1.1.0", "react": "^18.3.1", "react-codemirror2": "^8.0.1", "react-dom": "^18.3.1", "typescript": "^5.5.4" }, "devDependencies": { "@babel/core": "^7.24.9", "@babel/preset-env": "^7.24.8", "@babel/preset-react": "^7.24.7", "@types/codemirror": "^5.60.16", "cross-env": "^7.0.3", "css-loader": "^7.1.2", "eslint-plugin-prettier": "^5.2.1", "html-webpack-plugin": "^5.6.0", "husky": "^9.1.2", "mini-css-extract-plugin": "^2.9.0", "prettier": "^3.3.3", "ts-loader": "^9.5.1", "webpack": "^5.93.0", "webpack-cli": "^5.1.4", "webpack-dev-server": "^5.0.4" }, "files": [ "build", "docs" ], "keywords": [ "datocms", "datocms-plugin", "field-editor", "json-field", "key-value-pair", "json-table", "json", "copy-json", "paste-json" ], "repository": { "type": "git", "url": "https://github.com/voorhoede/datocms-plugin-json-table.git" }, "author": "Voorhoede", "license": "ISC", "datoCmsPlugin": { "title": "JSON Table", "previewImage": "docs/preview.gif", "coverImage": "docs/cover.jpg", "entryPoint": "build/index.html" }, "eslintConfig": { "plugins": [ "prettier" ], "extends": [ "react-app", "prettier" ], "rules": { "no-console": [ "error", { "allow": [ "warn", "error" ] } ], "prettier/prettier": 1 } }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } }