-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.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
{
"name": "emdash-to-buffer-plugin",
"version": "1.1.1",
"description": "Send newly published EmDash posts to Buffer queue",
"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"
],
"keywords": [
"emdash",
"cms",
"plugin",
"buffer",
"syndication"
],
"author": "Justin Thompson",
"license": "MIT",
"peerDependencies": {
"emdash": ">=0.30.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@emdash-cms/plugin-cli": "0.8.0",
"@types/node": "^24.10.0",
"emdash": "^0.31.1",
"knip": "^6.6.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"scripts": {
"build": "emdash-plugin build",
"check": "biome check .",
"check:fix": "biome check --write .",
"dev": "emdash-plugin dev",
"format": "biome format --write .",
"knip": "knip",
"lint": "biome lint .",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"validate": "emdash-plugin validate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devjusty/emdash-to-buffer-plugin.git"
},
"knip": {
"entry": [
"src/index.ts",
"src/plugin.ts"
]
},
"packageManager": "pnpm@11.20.0+sha512.9a6f330a95b66446ea088faf1521405a8a01f07fde7124cc9958dfed52d4bb436737e65b08f85f37b46fcba375092558ac51262b816844b22f63406ed166bfee"
}