1 | {
|
2 | "name": "reactotron-core-client",
|
3 | "version": "2.9.6",
|
4 | "description": "Grants Reactotron clients the ability to talk to a Reactotron server.",
|
5 | "author": "Infinite Red",
|
6 | "license": "MIT",
|
7 | "bugs": {
|
8 | "url": "https://github.com/infinitered/reactotron/issues"
|
9 | },
|
10 | "homepage": "https://github.com/infinitered/reactotron/tree/master/lib/reactotron-core-client",
|
11 | "repository": "https://github.com/infinitered/reactotron/tree/master/lib/reactotron-core-client",
|
12 | "files": [
|
13 | "dist",
|
14 | "src"
|
15 | ],
|
16 | "main": "dist/index.js",
|
17 | "module": "dist/index.esm.js",
|
18 | "types": "dist/types/src/index.d.ts",
|
19 | "react-native": "src/index.ts",
|
20 | "exports": {
|
21 | "import": "./dist/index.esm.js",
|
22 | "react-native": "./src/index.ts",
|
23 | "types": "./dist/types/src/index.d.ts",
|
24 | "default": "./dist/index.js"
|
25 | },
|
26 | "scripts": {
|
27 | "test": "jest",
|
28 | "test:watch": "jest --watch",
|
29 | "format": "prettier '*.{js,ts,tsx,json,md,css,yml}|**/*.{js,ts,tsx,json,md,css,yml}' --config ../../.prettierrc --ignore-path ../../.prettierignore",
|
30 | "format:check": "yarn format --check",
|
31 | "format:write": "yarn format --write",
|
32 | "prebuild": "yarn clean",
|
33 | "build": "yarn tsc && yarn compile",
|
34 | "prebuild:dev": "yarn clean",
|
35 | "build:dev": "yarn tsc && yarn compile:dev",
|
36 | "clean": "rimraf ./dist",
|
37 | "lint": "eslint src --ext .ts,.tsx",
|
38 | "compile": "NODE_ENV=production rollup -c",
|
39 | "compile:dev": "NODE_ENV=development rollup -c",
|
40 | "tsc": "tsc",
|
41 | "typecheck": "tsc",
|
42 | "ci:test": "yarn test --runInBand"
|
43 | },
|
44 | "devDependencies": {
|
45 | "@babel/core": "^7.23.2",
|
46 | "@babel/plugin-proposal-class-properties": "^7.18.6",
|
47 | "@babel/preset-env": "^7.23.2",
|
48 | "@babel/preset-typescript": "^7.23.2",
|
49 | "@types/jest": "^29.5.7",
|
50 | "@types/node": "^18.18.8",
|
51 | "@types/ws": "^8.5.8",
|
52 | "@typescript-eslint/eslint-plugin": "^6.7.5",
|
53 | "@typescript-eslint/parser": "^6.7.5",
|
54 | "babel-eslint": "^10.1.0",
|
55 | "babel-jest": "^29.7.0",
|
56 | "eslint": "^8.53.0",
|
57 | "eslint-config-prettier": "^9.0.0",
|
58 | "eslint-config-standard": "^17.1.0",
|
59 | "eslint-plugin-import": "^2.29.0",
|
60 | "eslint-plugin-n": "^16.2.0",
|
61 | "eslint-plugin-promise": "^6.1.1",
|
62 | "eslint-plugin-standard": "^5.0.0",
|
63 | "get-port-please": "^3.1.1",
|
64 | "jest": "^29.7.0",
|
65 | "jest-environment-node": "^29.7.0",
|
66 | "prettier": "^3.0.3",
|
67 | "rimraf": "5.0.5",
|
68 | "rollup": "2.56.3",
|
69 | "rollup-plugin-babel": "4.4.0",
|
70 | "rollup-plugin-babel-minify": "10.0.0",
|
71 | "rollup-plugin-filesize": "9.1.1",
|
72 | "rollup-plugin-node-resolve": "5.2.0",
|
73 | "rollup-plugin-replace": "2.2.0",
|
74 | "rollup-plugin-resolve": "0.0.1-predev.1",
|
75 | "ts-jest": "^29.1.1",
|
76 | "tslib": "^2.6.2",
|
77 | "typescript": "^5.1.3",
|
78 | "ws": "^8.14.2"
|
79 | },
|
80 | "eslintConfig": {
|
81 | "root": false,
|
82 | "globals": {
|
83 | "__DEV__": false,
|
84 | "jasmine": false,
|
85 | "beforeAll": false,
|
86 | "afterAll": false,
|
87 | "beforeEach": false,
|
88 | "afterEach": false,
|
89 | "test": false,
|
90 | "expect": false,
|
91 | "describe": false,
|
92 | "jest": false,
|
93 | "it": false
|
94 | }
|
95 | },
|
96 | "jest": {
|
97 | "preset": "ts-jest",
|
98 | "testEnvironment": "node",
|
99 | "testMatch": [
|
100 | "**/*.test.[tj]s"
|
101 | ]
|
102 | },
|
103 | "dependencies": {
|
104 | "reactotron-core-contract": "0.2.4"
|
105 | }
|
106 | } |
\ | No newline at end of file |