-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.12 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
{
"name": "@emdash-cms/plugin-troubleshooting",
"version": "0.2.0",
"description": "Troubleshooting plugin for EmDash CMS \u2014 resolve caching and other runtime shenanigans",
"type": "module",
"main": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"./sandbox": "./dist/plugin.mjs"
},
"files": [
"dist",
"emdash-plugin.jsonc",
"README.md",
"LICENSE"
],
"keywords": [
"emdash",
"cms",
"plugin",
"troubleshooting",
"cache",
"cloudflare"
],
"author": "Scott Buscemi",
"license": "MIT",
"scripts": {
"build": "emdash-plugin build",
"dev": "emdash-plugin dev",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "node -e \"require('node:fs').accessSync('dist/index.mjs')\""
},
"peerDependencies": {
"emdash": ">=0.32.0"
},
"devDependencies": {
"@emdash-cms/plugin-cli": "^0.8.0",
"emdash": "^0.31.1",
"typescript": "^5.9.0",
"vitest": "^4.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emdash-cms/plugin-troubleshooting.git"
},
"publishConfig": {
"access": "public"
}
}