-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 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
{
"name": "embed-everything",
"version": "0.1.0",
"description": "Monorepo for Embed Everything: an Eleventy plugin that allows you to quickly add common web embeds to markdown posts, using only their URLs",
"private": true,
"engines": {
"pnpm": ">=7.0.0"
},
"packageManager": "pnpm@10.28.1",
"scripts": {
"build": "turbo run build",
"coverage": "turbo run coverage",
"dev": "turbo run dev",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"release": "changeset publish"
},
"license": "MIT",
"author": {
"name": "Graham F. Scott",
"email": "gfscott@gmail.com",
"url": "https://gfscott.com"
},
"homepage": "https://gfscott.com/embed-everything/",
"repository": {
"type": "git",
"url": "https://github.com/gfscott/eleventy-plugin-embed-everything.git"
},
"bugs": "https://github.com/gfscott/eleventy-plugin-embed-everything/issues",
"devDependencies": {
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@vitest/coverage-istanbul": "^4.0.18",
"ava": "^7.0.0",
"msw": "^2.12.10",
"nyc": "^18.0.0",
"permute-arrays": "workspace:^",
"turbo": "^2.8.13",
"vitest": "^4.0.18"
},
"dependencies": {
"@changesets/cli": "^2.30.0"
}
}