-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 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
41
42
43
44
45
46
47
{
"name": "astro-seo-schema",
"description": "Easily insert valid Schema.org JSON-LD in your Astro apps.",
"version": "5.0.0",
"homepage": "https://github.com/codiume/orbit",
"bugs": "https://github.com/codiume/orbit/issues",
"author": "codiume",
"license": "MIT",
"keywords": [
"astro",
"astro-component",
"json-ld",
"schema-org",
"semantic-web",
"seo"
],
"repository": {
"type": "git",
"url": "https://github.com/codiume/orbit.git",
"directory": "packages/astro-seo-schema"
},
"scripts": {
"build": "astro-build --src src/index.ts src/jsonld.ts src/Schema.astro",
"typecheck": "tsc --declaration --emitDeclarationOnly"
},
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"main": "./dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
}
},
"peerDependencies": {
"astro": "^5.0.0",
"schema-dts": "^1.1.0"
},
"devDependencies": {
"astro-build": "workspace:*"
}
}