UNPKG

reactotron-core-client

Version:

Grants Reactotron clients the ability to talk to a Reactotron server.

105 lines 3.23 kB
{ "name": "reactotron-core-client", "version": "2.9.7", "description": "Grants Reactotron clients the ability to talk to a Reactotron server.", "author": "Infinite Red", "license": "MIT", "bugs": { "url": "https://github.com/infinitered/reactotron/issues" }, "homepage": "https://github.com/infinitered/reactotron/tree/master/lib/reactotron-core-client", "repository": "https://github.com/infinitered/reactotron/tree/master/lib/reactotron-core-client", "files": [ "dist", "src" ], "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/types/src/index.d.ts", "react-native": "src/index.ts", "exports": { "import": "./dist/index.esm.js", "types": "./dist/types/src/index.d.ts", "default": "./dist/index.js" }, "scripts": { "test": "jest", "test:watch": "jest --watch", "format": "prettier '*.{js,ts,tsx,json,md,css,yml}|**/*.{js,ts,tsx,json,md,css,yml}' --config ../../.prettierrc --ignore-path ../../.prettierignore", "format:check": "yarn format --check", "format:write": "yarn format --write", "prebuild": "yarn clean", "build": "yarn tsc && yarn compile", "prebuild:dev": "yarn clean", "build:dev": "yarn tsc && yarn compile:dev", "clean": "rimraf ./dist", "lint": "eslint src --ext .ts,.tsx", "compile": "NODE_ENV=production rollup -c", "compile:dev": "NODE_ENV=development rollup -c", "tsc": "tsc", "typecheck": "tsc", "ci:test": "yarn test --runInBand" }, "devDependencies": { "@babel/core": "^7.23.2", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/preset-env": "^7.23.2", "@babel/preset-typescript": "^7.23.2", "@types/jest": "^29.5.7", "@types/node": "^18.18.8", "@types/ws": "^8.5.8", "@typescript-eslint/eslint-plugin": "^6.7.5", "@typescript-eslint/parser": "^6.7.5", "babel-eslint": "^10.1.0", "babel-jest": "^29.7.0", "eslint": "^8.53.0", "eslint-config-prettier": "^9.0.0", "eslint-config-standard": "^17.1.0", "eslint-plugin-import": "^2.29.0", "eslint-plugin-n": "^16.2.0", "eslint-plugin-promise": "^6.1.1", "eslint-plugin-standard": "^5.0.0", "get-port-please": "^3.1.1", "jest": "^29.7.0", "jest-environment-node": "^29.7.0", "prettier": "^3.0.3", "rimraf": "5.0.5", "rollup": "2.56.3", "rollup-plugin-babel": "4.4.0", "rollup-plugin-babel-minify": "10.0.0", "rollup-plugin-filesize": "9.1.1", "rollup-plugin-node-resolve": "5.2.0", "rollup-plugin-replace": "2.2.0", "rollup-plugin-resolve": "0.0.1-predev.1", "ts-jest": "^29.1.1", "tslib": "^2.6.2", "typescript": "^5.1.3", "ws": "^8.14.2" }, "eslintConfig": { "root": false, "globals": { "__DEV__": false, "jasmine": false, "beforeAll": false, "afterAll": false, "beforeEach": false, "afterEach": false, "test": false, "expect": false, "describe": false, "jest": false, "it": false } }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "testMatch": [ "**/*.test.[tj]s" ] }, "dependencies": { "reactotron-core-contract": "0.2.5" } }