-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.36 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
{
"name": "memoza",
"type": "module",
"version": "1.0.2",
"packageManager": "pnpm@11.1.2",
"description": "The ultimate memoization utility for TypeScript.",
"homepage": "https://github.com/letstri/memoza",
"repository": {
"type": "git",
"url": "git+https://github.com/letstri/memoza.git"
},
"bugs": {
"url": "https://github.com/letstri/memoza/issues"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"prepublishOnly": "tsdown",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check-types": "tsc",
"test": "bun test",
"bench": "bun ./bench/index.ts",
"build": "tsdown",
"dev": "tsdown --watch"
},
"dependencies": {
"devalue": "^5.8.1"
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"@emotion/memoize": "^0.9.0",
"@formatjs/fast-memoize": "^3.1.4",
"@types/bun": "^1.3.14",
"@types/lodash.memoize": "^4.1.9",
"@types/memoizee": "^0.4.12",
"eslint": "^10.3.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"lodash.memoize": "^4.1.2",
"memoize": "^11.0.0",
"memoizee": "^0.4.17",
"npm-run-all2": "^8.0.4",
"tsdown": "^0.22.0",
"typescript": "^6.0.0"
}
}