mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-14 13:46:55 +03:00
b82de74592
* Use rollup for d3tooltip * Use rollup for map2tree * Set moduleResolution * Use rollup for d3-state-visualizer * Use rollup for react-base16-styling * Use rollup for react-dock * Use rollup for react-json-tree * Use rollup for redux-devtools * Use rollup for redux-devtools-intrument * Use rollup for redux-devtools-chart-monitor * Update export * Use rollup for redux-devtools-dock-monitor * Use rollup for redux-devtools-inspector-monitor * Fix inspector demo * Fix invalid eslint config * Use rollup for inspector-monitor-test-tab * Use rollup for inspector-monitor-trace-tab * Use rollup for redux-devtools-log-monitor * Use rollup for redux-devtools-remote * Use rollup in redux-devtools-rtk-query-monitor * Use rollup for redux-devtools-serialize * Fix redux-devtools examples * Use rollup for redux-devtools-slider-monitor * Fix slider examples * Use rollup for redux-devtools-ui * Use rollup for redux-devtools-utils * Use rollup for redux-devtools-extension * Use rollup for redux-devtools-app * Fix Webpack app build * Fix extension build * Turn on minimization * Update CLI
70 lines
1.9 KiB
JSON
70 lines
1.9 KiB
JSON
{
|
|
"name": "react-base16-styling",
|
|
"version": "0.8.2",
|
|
"description": "React styling with base16 color scheme support",
|
|
"keywords": [
|
|
"react",
|
|
"theme",
|
|
"base16",
|
|
"styling"
|
|
],
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/react-base16-styling",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Alexander <alexkuz@gmail.com> (http://kuzya.org/)",
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"main": "dist/react-base16-styling.cjs.js",
|
|
"module": "dist/react-base16-styling.esm.js",
|
|
"types": "dist/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"clean": "rimraf dist",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "yarn run clean && yarn run build",
|
|
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.16.7",
|
|
"@types/base16": "^1.0.2",
|
|
"@types/lodash": "^4.14.178",
|
|
"base16": "^1.0.0",
|
|
"color": "^3.2.1",
|
|
"csstype": "^3.0.10",
|
|
"lodash.curry": "^4.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.16.7",
|
|
"@babel/eslint-parser": "^7.16.5",
|
|
"@babel/plugin-transform-runtime": "^7.16.7",
|
|
"@babel/preset-env": "^7.16.7",
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
"@rollup/plugin-babel": "^5.3.0",
|
|
"@types/color": "^3.0.2",
|
|
"@types/jest": "^27.4.0",
|
|
"@types/lodash.curry": "^4.1.6",
|
|
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
|
"@typescript-eslint/parser": "^5.8.1",
|
|
"eslint": "^8.6.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-jest": "^25.3.4",
|
|
"jest": "^27.4.5",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.63.0",
|
|
"rollup-plugin-typescript2": "^0.31.1",
|
|
"ts-jest": "^27.1.2",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "~4.5.4"
|
|
}
|
|
}
|