-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.14 KB
/
package.json
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
{
"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": "[email protected]",
"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": "[email protected]",
"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.1.0",
"ava": "^6.1.3",
"nyc": "^17.1.0",
"permute-arrays": "workspace:^",
"turbo": "^2.1.3"
},
"dependencies": {
"@changesets/cli": "^2.27.9"
}
}