-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.39 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.39 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@humanspeak/memory-cache",
"version": "1.0.5",
"description": "A lightweight, zero-dependency in-memory cache for TypeScript and JavaScript with TTL expiration, LRU eviction, wildcard pattern deletion, and a powerful @cached decorator for method-level memoization. Perfect for API response caching, session storage, and performance optimization.",
"keywords": [
"cache",
"memory-cache",
"lru-cache",
"ttl-cache",
"in-memory-cache",
"caching",
"memoization",
"memoize",
"decorator",
"typescript",
"node-cache",
"simple-cache",
"lightweight-cache",
"key-value-store",
"expiring-cache",
"method-cache",
"function-cache",
"data-cache",
"cache-manager",
"time-to-live",
"eviction",
"lru",
"performance",
"optimization",
"storage",
"wildcard",
"pattern-matching",
"prefix-delete",
"zero-dependency"
],
"homepage": "https://memory.svelte.page",
"bugs": {
"url": "https://github.com/humanspeak/memory-cache/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/humanspeak/memory-cache.git"
},
"license": "MIT",
"author": "Humanspeak, Inc.",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"cf-typegen": "cd docs && npx wrangler types",
"check": "tsc --noEmit",
"dev": "vite build --watch",
"dev:all": "mprocs",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"lint:fix": "npm run format && eslint . --fix",
"prepare": "husky",
"prepublishOnly": "npm run build",
"test": "vitest run --coverage",
"test:only": "vitest run",
"test:unit": "vitest",
"test:watch": "vitest"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"mprocs": "^0.8.3",
"eslint": "^10.0.2",
"eslint-config-prettier": "10.1.8",
"globals": "^17.4.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-sort-json": "^4.2.0",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"publint": "^0.3.18",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18"
},
"volta": {
"node": "24.13.0"
},
"pnpm": {
"overrides": {
"cookie": ">=0.7.0"
}
}
}