This repository was archived by the owner on Mar 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.86 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.86 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
{
"name": "@techstack/memoize",
"version": "1.3.294",
"description": "A memoization library which only remembers the latest invocation",
"type": "module",
"module": "./dist/memoize.esm.js",
"main": "./dist/index.js",
"exports": {
"import": "./dist/memoize.esm.js",
"require": "./dist/index.js",
"default": "./dist/memoize.esm.js"
},
"typings": "dist/types/index.d.ts",
"scripts": {
"test": "tcm test",
"lint": "tcm lint src test",
"build": "tcm build"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18"
},
"keywords": [
"memoize",
"memoization",
"cache",
"performance"
],
"homepage": "https://github.com/The-Code-Monkey/TechStack/blob/dev/packages/memoize/README.md",
"repository": {
"type": "git",
"url": "https://github.com/The-Code-Monkey/TechStack.git"
},
"bugs": {
"url": "https://github.com/The-Code-Monkey/TechStack/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@techstack/tcm-cli": "workspace:*",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"benchmark": "2.1.4",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.2",
"expect-type": "1.2.0",
"fast-memoize": "2.5.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"lodash": "4.17.21",
"markdown-table": "3.0.4",
"mem": "10.0.0",
"memoizee": "0.4.17",
"moize": "6.1.6",
"nanocolors": "0.2.13",
"ora": "8.0.1",
"prettier": "3.3.0",
"ts-jest": "29.1.4",
"tslib": "2.6.2",
"typescript": "5.4.5"
},
"gitHead": "7bb2bc7bbce0432773369ca533adf6d1719e877a"
}