react-pick-color
Version:
A modern color picker for react
84 lines (83 loc) • 2.18 kB
JSON
{
"name": "react-pick-color",
"description": "A modern color picker for react",
"version": "2.0.0",
"main": "build/index.js",
"module": "build/index.es.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"clean": "rm -rf build",
"commit": "cz",
"build": "npm run clean && rollup -c --bundleConfigAsCjs",
"build:watch": "npm run clean && rollup -c -w --bundleConfigAsCjs",
"size": "npm run build && size-limit",
"prepare": "npm run build",
"prettier": "prettier src --write",
"type-check": "tsc --pretty --noEmit"
},
"size-limit": [
{
"path": "build/index.js",
"limit": "8 KB"
},
{
"path": "build/index.es.js",
"limit": "8 KB"
}
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/jeslage/react-pick-color"
},
"keywords": [
"React",
"Colorpicker",
"Color"
],
"author": "Johannes Eslage",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeslage/react-pick-color/issues"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^11.0.3",
"@size-limit/preset-app": "^8.2.6",
"@types/react": "^18.2.20",
"@types/tinycolor2": "^1.4.2",
"babel-loader": "^9.1.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"identity-obj-proxy": "^3.0.0",
"prettier": "^3.0.1",
"react-docgen-typescript-loader": "^3.6.0",
"rollup": "^3.28.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-terser": "^7.0.1",
"rollup-plugin-typescript2": "^0.35.0",
"semantic-release": "^21.0.6",
"size-limit": "^8.2.6",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
},
"dependencies": {
"tinycolor2": "^1.4.1"
}
}