-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.53 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.53 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
{
"name": "strapi-plugin-cache-manager",
"version": "0.1.5",
"description": "Strapi 5 plugin for managing and invalidating HTTP-based caches (Varnish, Redis proxy APIs, CDNs) directly from the admin UI",
"keywords": [
"strapi",
"strapi-plugin",
"cache",
"cache-manager",
"cache-invalidation",
"varnish",
"redis",
"cdn",
"purge"
],
"homepage": "https://github.com/djordjesavanovic/strapi-cache-manager#readme",
"bugs": {
"url": "https://github.com/djordjesavanovic/strapi-cache-manager/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/djordjesavanovic/strapi-cache-manager"
},
"license": "MIT",
"author": "Djordje Savanovic",
"type": "commonjs",
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"types": "./dist/admin/src/index.d.ts",
"source": "./admin/src/index.tsx",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"types": "./dist/server/src/index.d.ts",
"source": "./server/src/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist",
"README.md",
"ARCHITECTURE.md"
],
"scripts": {
"build": "strapi-plugin build",
"dev": "strapi-plugin watch",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
"test:ts:back": "run -T tsc -p server/tsconfig.json"
},
"dependencies": {},
"devDependencies": {
"@strapi/sdk-plugin": "^6.0.1",
"@strapi/strapi": "^5.40.0",
"@strapi/typescript-utils": "^5.40.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"prettier": "^3.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.30.3",
"styled-components": "^6.1.19",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@strapi/design-system": "^2.2.0",
"@strapi/icons": "^2.2.0",
"@strapi/strapi": "^5.40.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-intl": "^7.1.11",
"react-router-dom": "^6.30.3",
"styled-components": "^6.1.18"
},
"strapi": {
"kind": "plugin",
"name": "cache-manager",
"displayName": "Cache Manager",
"description": "Admin panel extension for managing and invalidating caches across multiple providers"
}
}