-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 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
{
"name": "tauri-plugin-cache-api",
"version": "0.1.6",
"author": "Taiizor",
"description": "Comprehensive disk and memory caching solution for Tauri applications. Features dynamic TTL management, intelligent data compression, automatic cleanup, and statistics monitoring. Delivers high-performance data access, optimized storage, and improved user experience.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Taiizor/tauri-plugin-cache"
},
"keywords": [
"tauri",
"plugin",
"cache",
"disk",
"memory",
"ttl",
"compression",
"storage",
"expiration",
"optimization",
"cross-platform",
"auto-cleanup",
"statistics",
"performance"
],
"type": "module",
"types": "./dist-js/index.d.ts",
"main": "./dist-js/index.cjs",
"module": "./dist-js/index.js",
"exports": {
"types": "./dist-js/index.d.ts",
"import": "./dist-js/index.js",
"require": "./dist-js/index.cjs"
},
"files": [
"dist-js",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "bun run build",
"pretest": "bun run build"
},
"dependencies": {
"@tauri-apps/api": "^2.9.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.3.0",
"rollup": "^4.53.3",
"tslib": "^2.8.1",
"typescript": "^6.0.2"
}
}