-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.58 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
{
"name": "@ahmetilhn/memofy",
"version": "2.0.0",
"description": "Prevents re-execution of large javascript functions that have been processed once with the same parameter.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "sh ./scripts/prod-build.sh",
"dev": "sh ./scripts/dev-build.sh",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ahmetilhn/memofy.git"
},
"keywords": [
"memoization",
"cache",
"performance",
"optimization",
"function",
"memoize",
"typescript",
"javascript",
"utility",
"decorator",
"usememo",
"use-memo",
"memoization",
"memoizer",
"cacheable functions",
"memofy",
"useMemo"
],
"private": false,
"author": "Ahmet ilhan <ahmetilhan.dev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahmetilhn/memofy/issues"
},
"homepage": "https://github.com/ahmetilhn/memofy#readme",
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.41.1",
"rollup-plugin-dts": "^6.2.1",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@ahmetilhn/handy-utils": "^3.2.3"
}
}