-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
60 lines (60 loc) · 1.37 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@astrolib/seo",
"version": "1.0.0-beta.5",
"description": "Managing your SEO easier in Astro projects",
"homepage": "https://github.com/onwidget/astrolib/tree/main/packages/seo",
"bugs": {
"url": "https://github.com/onwidget/astrolib/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/onwidget/astrolib.git",
"directory": "packages/seo"
},
"author": {
"name": "onWidget",
"email": "[email protected]",
"url": "https://github.com/onwidget"
},
"license": "MIT",
"type": "module",
"main": "index.ts",
"types": "src/types.ts",
"publishConfig": {
"access": "public"
},
"exports": {
".": "./index.ts",
"./types": "./src/types.ts",
"./package.json": "./package.json"
},
"files": [
"src",
"index.ts"
],
"keywords": [
"astro-component",
"withastro",
"astro",
"astrolib",
"seo",
"astro-seo",
"astro-integration"
],
"scripts": {
"test": "jest"
},
"devDependencies": {
"@types/html-escaper": "^3.0.0",
"@types/jest": "^29.5.4",
"astro": "^1.2.1 || ^2.0.0 || ^3.0.0-beta.0 || ^3.0.0 || ^4.0.0",
"html-escaper": "^3.0.3",
"html-validate": "^8.18.2",
"jest": "^29.6.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"astro": "^1.2.1 || ^2.0.0 || ^3.0.0-beta.0 || ^3.0.0 || ^4.0.0"
}
}