-
Notifications
You must be signed in to change notification settings - Fork 661
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "reselect",
"version": "5.3.0",
"description": "Selectors for Redux.",
"main": "./dist/cjs/index.js",
"module": "./dist/reselect.legacy-esm.js",
"types": "./dist/reselect.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/reselect.d.ts",
"import": "./dist/reselect.mjs",
"default": "./dist/cjs/index.js"
}
},
"files": [
"src",
"dist"
],
"sideEffects": false,
"bugs": {
"url": "https://github.com/reduxjs/reselect/issues"
},
"scripts": {
"build": "pnpm clean && tsdown --config-loader unrun && tsx scripts/stripSourcemapFileField.mts",
"clean": "rimraf dist",
"format": "oxfmt \"{src,test,type-tests,typescript_test,bench,scripts}/**\" \"*.mts\" \"*.json\" \"!website/**\"",
"format:check": "oxfmt --check \"{src,test,type-tests,typescript_test,bench,scripts}/**\" \"*.mts\" \"*.json\" \"!website/**\"",
"lint": "oxlint src test type-tests typescript_test",
"lint:fix": "oxlint --fix src test type-tests typescript_test",
"prepack": "pnpm build",
"bench": "vitest bench --run --mode production",
"bench:hot-path": "node ./bench/build.mjs && node --expose-gc ./bench/run.mjs",
"bench:hot-path:dev": "node ./bench/build.mjs --dev && node --expose-gc ./bench/run.mjs",
"heap-snapshot": "pnpm build && node --expose-gc ./scripts/weakMapMemoizeHeapSnapshot.mjs",
"test": "vitest --run && pnpm type-check",
"test:watch": "vitest --watch",
"type-check": "vitest --run --typecheck.only && pnpm type-check:loose-null-checks",
"type-check:loose-null-checks": "tsc --noEmit -p type-tests/tsconfig.looseNullChecks.json",
"type-check:trace": "vitest --run --typecheck.only && tsc --noEmit -p typescript_test/tsconfig.json --generateTrace trace && npx @typescript/analyze-trace trace && rimraf trace",
"test:typescript": "tsc --noEmit -p typescript_test/tsconfig.json",
"docs:start": "pnpm --dir website run start",
"docs:build": "pnpm --dir website run build",
"docs:clear": "pnpm --dir website run clear",
"docs:serve": "pnpm --dir website run serve"
},
"keywords": [
"react",
"redux"
],
"authors": [
"Lee Bannard",
"Robert Binna",
"Martijn Faassen",
"Philip Spitzlinger"
],
"repository": {
"type": "git",
"url": "https://github.com/reduxjs/reselect.git"
},
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@reduxjs/toolkit": "^2.0.1",
"@testing-library/react": "^14.1.2",
"@types/lodash": "^4.14.175",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"@types/shelljs": "^0.8.11",
"@typescript/analyze-trace": "^0.10.1",
"jsdom": "^23.0.0",
"lodash": "^4.17.21",
"lodash.memoize": "^4.1.2",
"memoize-one": "^6.0.0",
"micro-memoize": "^4.0.9",
"netlify-plugin-cache": "^1.0.3",
"oxfmt": "^0.66.0",
"oxlint": "^1.81.0",
"pkg-pr-new": "^0.0.88",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"rimraf": "^3.0.2",
"rolldown": "1.2.4",
"shelljs": "^0.8.5",
"tsdown": "^0.23.0",
"tsx": "^4.23.13",
"typescript": "^6.0.3",
"unrun": "^0.3.1",
"vitest": "^4.1.11"
},
"packageManager": "pnpm@11.23.0"
}