| 1 |
{ |
| 2 |
"name": "carbon-fields", |
| 3 |
"version": "3.6.3", |
| 4 |
"description": "WordPress developer-friendly custom fields for post types, taxonomy terms, users, comments, widgets, options, navigation menus and more.", |
| 5 |
"directories": { |
| 6 |
"test": "tests" |
| 7 |
}, |
| 8 |
"scripts": { |
| 9 |
"start": "npm run development -- --watch", |
| 10 |
"build": "npm run development && npm run production", |
| 11 |
"development": "cross-env NODE_ENV=development webpack --mode development", |
| 12 |
"production": "cross-env NODE_ENV=production webpack --mode production" |
| 13 |
}, |
| 14 |
"repository": { |
| 15 |
"type": "git", |
| 16 |
"url": "git+https://github.com/htmlburger/carbon-fields.git" |
| 17 |
}, |
| 18 |
"keywords": [ |
| 19 |
"custom", |
| 20 |
"fields" |
| 21 |
], |
| 22 |
"author": "htmlburger", |
| 23 |
"license": "GPL-2.0", |
| 24 |
"bugs": { |
| 25 |
"url": "https://github.com/htmlburger/carbon-fields/issues" |
| 26 |
}, |
| 27 |
"homepage": "https://github.com/htmlburger/carbon-fields#readme", |
| 28 |
"devDependencies": { |
| 29 |
"@babel/core": "^7.15.0", |
| 30 |
"@babel/plugin-proposal-class-properties": "^7.14.5", |
| 31 |
"@babel/plugin-proposal-object-rest-spread": "^7.14.7", |
| 32 |
"@babel/plugin-syntax-async-generators": "^7.8.4", |
| 33 |
"@babel/plugin-transform-runtime": "^7.15.0", |
| 34 |
"@babel/preset-env": "^7.15.0", |
| 35 |
"@babel/preset-react": "^7.14.5", |
| 36 |
"@wordpress/babel-plugin-makepot": "^4.2.0", |
| 37 |
"@wordpress/browserslist-config": "^4.1.0", |
| 38 |
"autoprefixer": "^9.3.1", |
| 39 |
"babel-eslint": "^10.1.0", |
| 40 |
"babel-loader": "^8.2.2", |
| 41 |
"babel-plugin-module-resolver": "^4.1.0", |
| 42 |
"cross-env": "^5.2.0", |
| 43 |
"css-loader": "^1.0.0", |
| 44 |
"eslint": "^5.8.0", |
| 45 |
"eslint-config-wordpress": "^2.0.0", |
| 46 |
"eslint-plugin-react": "^7.11.1", |
| 47 |
"eslint-plugin-wordpress": "https://github.com/WordPress-Coding-Standards/eslint-plugin-wordpress#a650f73e2461ddae0faec900c0199b3c258cb5da", |
| 48 |
"husky": "^7.0.1", |
| 49 |
"lint-staged": "^8.1.0", |
| 50 |
"mini-css-extract-plugin": "^0.4.4", |
| 51 |
"optimize-css-assets-webpack-plugin": "^5.0.1", |
| 52 |
"postcss-loader": "^3.0.0", |
| 53 |
"postcss-preset-env": "^6.2.0", |
| 54 |
"sass": "^1.24.0", |
| 55 |
"sass-loader": "^7.1.0", |
| 56 |
"sass-resources-loader": "^2.0.0", |
| 57 |
"terser-webpack-plugin": "^1.1.0", |
| 58 |
"webpack": "^5.89.0", |
| 59 |
"webpack-cli": "^5.1.4", |
| 60 |
"webpack-merge": "^5.10.0" |
| 61 |
}, |
| 62 |
"dependencies": { |
| 63 |
"@babel/runtime": "^7.14.8", |
| 64 |
"@wordpress/api-fetch": "^6.23.1", |
| 65 |
"@wordpress/blocks": "^12.3.3", |
| 66 |
"@wordpress/components": "^23.3.6", |
| 67 |
"@wordpress/compose": "^6.3.3", |
| 68 |
"@wordpress/data": "^8.3.3", |
| 69 |
"@wordpress/date": "^4.26.2", |
| 70 |
"@wordpress/editor": "^13.3.9", |
| 71 |
"@wordpress/element": "^5.3.2", |
| 72 |
"@wordpress/hooks": "^3.26.1", |
| 73 |
"@wordpress/i18n": "^4.26.1", |
| 74 |
"callbag-basics": "^3.0.0", |
| 75 |
"callbag-create": "^1.1.1", |
| 76 |
"callbag-debounce": "^2.1.2", |
| 77 |
"callbag-distinct-until-changed": "^1.0.0", |
| 78 |
"callbag-drop-until": "^1.0.0", |
| 79 |
"callbag-empty": "^1.0.1", |
| 80 |
"callbag-from-delegated-event": "^2.0.0", |
| 81 |
"callbag-of": "^1.0.1", |
| 82 |
"callbag-start-with": "^3.1.0", |
| 83 |
"callbag-take-until": "^3.0.0", |
| 84 |
"classnames": "^2.2.6", |
| 85 |
"immer": "^9.0.6", |
| 86 |
"lodash": "^4.17.21", |
| 87 |
"nanoid": "^2.0.0", |
| 88 |
"react": "^18.2.0", |
| 89 |
"react-color": "^2.19.3", |
| 90 |
"react-dom": "^18.2.0", |
| 91 |
"react-flatpickr": "^3.6.4", |
| 92 |
"react-onclickoutside": "^6.11.2", |
| 93 |
"react-select": "^3.1.1", |
| 94 |
"refract-callbag": "^5.0.0-rc.0" |
| 95 |
} |
| 96 |
} |
| 97 |
|