1 | {
|
---|
2 | "name": "reselect",
|
---|
3 | "version": "5.1.0",
|
---|
4 | "description": "Selectors for Redux.",
|
---|
5 | "main": "./dist/cjs/reselect.cjs",
|
---|
6 | "module": "./dist/reselect.legacy-esm.js",
|
---|
7 | "types": "./dist/reselect.d.ts",
|
---|
8 | "exports": {
|
---|
9 | "./package.json": "./package.json",
|
---|
10 | ".": {
|
---|
11 | "types": "./dist/reselect.d.ts",
|
---|
12 | "import": "./dist/reselect.mjs",
|
---|
13 | "default": "./dist/cjs/reselect.cjs"
|
---|
14 | }
|
---|
15 | },
|
---|
16 | "files": [
|
---|
17 | "src",
|
---|
18 | "dist"
|
---|
19 | ],
|
---|
20 | "sideEffects": false,
|
---|
21 | "bugs": {
|
---|
22 | "url": "https://github.com/reduxjs/reselect/issues"
|
---|
23 | },
|
---|
24 | "scripts": {
|
---|
25 | "build": "tsup",
|
---|
26 | "clean": "rimraf dist",
|
---|
27 | "format": "prettier --write \"{src,test}/**/*.{js,ts}\" \"docs/**/*.md\"",
|
---|
28 | "lint": "eslint src test",
|
---|
29 | "prepack": "yarn build",
|
---|
30 | "bench": "vitest --run bench --mode production",
|
---|
31 | "test": "node --expose-gc ./node_modules/vitest/dist/cli-wrapper.js run",
|
---|
32 | "test:watch": "node --expose-gc ./node_modules/vitest/dist/cli-wrapper.js watch",
|
---|
33 | "test:cov": "vitest run --coverage",
|
---|
34 | "type-check": "vitest --run --typecheck",
|
---|
35 | "type-check:trace": "vitest --run --typecheck && tsc --noEmit -p typescript_test/tsconfig.json --generateTrace trace && npx @typescript/analyze-trace trace && rimraf trace",
|
---|
36 | "test:typescript": "tsc --noEmit -p typescript_test/tsconfig.json",
|
---|
37 | "docs:start": "yarn --cwd website start",
|
---|
38 | "docs:build": "yarn --cwd website build",
|
---|
39 | "docs:clear": "yarn --cwd website clear",
|
---|
40 | "docs:serve": "yarn --cwd website serve"
|
---|
41 | },
|
---|
42 | "keywords": [
|
---|
43 | "react",
|
---|
44 | "redux"
|
---|
45 | ],
|
---|
46 | "authors": [
|
---|
47 | "Lee Bannard",
|
---|
48 | "Robert Binna",
|
---|
49 | "Martijn Faassen",
|
---|
50 | "Philip Spitzlinger"
|
---|
51 | ],
|
---|
52 | "repository": {
|
---|
53 | "type": "git",
|
---|
54 | "url": "https://github.com/reduxjs/reselect.git"
|
---|
55 | },
|
---|
56 | "license": "MIT",
|
---|
57 | "devDependencies": {
|
---|
58 | "@reduxjs/toolkit": "^2.0.1",
|
---|
59 | "@testing-library/react": "^14.1.2",
|
---|
60 | "@types/lodash": "^4.14.175",
|
---|
61 | "@types/react": "^18.2.38",
|
---|
62 | "@types/react-dom": "^18.2.17",
|
---|
63 | "@types/shelljs": "^0.8.11",
|
---|
64 | "@typescript-eslint/eslint-plugin": "^6",
|
---|
65 | "@typescript-eslint/eslint-plugin-tslint": "^6",
|
---|
66 | "@typescript-eslint/parser": "^6",
|
---|
67 | "@typescript/analyze-trace": "^0.10.1",
|
---|
68 | "eslint": "^8.0.1",
|
---|
69 | "eslint-plugin-react": "^7.26.1",
|
---|
70 | "eslint-plugin-typescript": "0.14.0",
|
---|
71 | "jsdom": "^23.0.0",
|
---|
72 | "lodash": "^4.17.21",
|
---|
73 | "lodash.memoize": "^4.1.2",
|
---|
74 | "memoize-one": "^6.0.0",
|
---|
75 | "micro-memoize": "^4.0.9",
|
---|
76 | "netlify-plugin-cache": "^1.0.3",
|
---|
77 | "prettier": "^2.7.1",
|
---|
78 | "react": "^18.2.0",
|
---|
79 | "react-dom": "^18.2.0",
|
---|
80 | "react-redux": "^9.0.4",
|
---|
81 | "rimraf": "^3.0.2",
|
---|
82 | "shelljs": "^0.8.5",
|
---|
83 | "tsup": "^6.7.0",
|
---|
84 | "typescript": "5.2",
|
---|
85 | "vitest": "^1.1.1"
|
---|
86 | }
|
---|
87 | }
|
---|