1 | {
|
2 | "name": "react-base16-styling",
|
3 | "version": "0.9.1",
|
4 | "description": "React styling with base16 color scheme support",
|
5 | "keywords": [
|
6 | "react",
|
7 | "theme",
|
8 | "base16",
|
9 | "styling"
|
10 | ],
|
11 | "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/react-base16-styling",
|
12 | "bugs": {
|
13 | "url": "https://github.com/reduxjs/redux-devtools/issues"
|
14 | },
|
15 | "license": "MIT",
|
16 | "author": "Alexander <alexkuz@gmail.com> (http://kuzya.org/)",
|
17 | "files": [
|
18 | "lib",
|
19 | "src"
|
20 | ],
|
21 | "main": "lib/cjs/index.js",
|
22 | "module": "lib/esm/index.js",
|
23 | "types": "lib/types/index.d.ts",
|
24 | "sideEffects": false,
|
25 | "repository": {
|
26 | "type": "git",
|
27 | "url": "git+https://github.com/reduxjs/redux-devtools.git"
|
28 | },
|
29 | "scripts": {
|
30 | "build": "yarn build:cjs && yarn build:esm && yarn build:types",
|
31 | "build:cjs": "babel src --extensions \".ts\" --out-dir lib/cjs",
|
32 | "build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts\" --out-dir lib/esm",
|
33 | "build:types": "tsc --emitDeclarationOnly",
|
34 | "clean": "rimraf lib",
|
35 | "test": "jest",
|
36 | "lint": "eslint . --ext .ts",
|
37 | "type-check": "tsc --noEmit",
|
38 | "prepack": "yarn run clean && yarn run build",
|
39 | "prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
40 | },
|
41 | "dependencies": {
|
42 | "@babel/runtime": "^7.16.7",
|
43 | "@types/base16": "^1.0.2",
|
44 | "@types/lodash": "^4.14.178",
|
45 | "base16": "^1.0.0",
|
46 | "color": "^3.2.1",
|
47 | "csstype": "^3.0.10",
|
48 | "lodash.curry": "^4.1.1"
|
49 | },
|
50 | "devDependencies": {
|
51 | "@babel/cli": "^7.16.8",
|
52 | "@babel/core": "^7.16.12",
|
53 | "@babel/eslint-parser": "^7.16.5",
|
54 | "@babel/plugin-transform-runtime": "^7.16.10",
|
55 | "@babel/preset-env": "^7.16.11",
|
56 | "@babel/preset-typescript": "^7.16.7",
|
57 | "@types/color": "^3.0.2",
|
58 | "@types/jest": "^27.4.0",
|
59 | "@types/lodash.curry": "^4.1.6",
|
60 | "@typescript-eslint/eslint-plugin": "^5.10.0",
|
61 | "@typescript-eslint/parser": "^5.10.0",
|
62 | "eslint": "^8.7.0",
|
63 | "eslint-config-prettier": "^8.3.0",
|
64 | "eslint-plugin-jest": "^25.7.0",
|
65 | "jest": "^27.4.7",
|
66 | "rimraf": "^3.0.2",
|
67 | "ts-jest": "^27.1.3",
|
68 | "typescript": "~4.5.5"
|
69 | },
|
70 | "gitHead": "238b8896f9cdb8c15c265025d131830a7f3570b9"
|
71 | }
|