-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "astro-robots",
"version": "2.3.1",
"description": "A reliable robots.txt generator for Astro projects, offering zero-config setup and Verified Bots support.",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"files": [
"dist/index.d.ts",
"dist/index.mjs"
],
"scripts": {
"fmt": "prettier --write .",
"build": "unbuild",
"dev": "unbuild --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"astro-integration",
"robots.txt",
"seo assistant",
"verified bots",
"verified robots",
"robots",
"robotsgenerator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ACP-CODE/astro-robots.git"
},
"author": "Junlin",
"license": "ISC",
"bugs": {
"url": "https://github.com/ACP-CODE/astro-robots/issues"
},
"homepage": "https://github.com/ACP-CODE/astro-robots#readme",
"devDependencies": {
"@types/node": "^22.10.1",
"astro": "^4.0.3",
"prettier": "^3.4.1",
"unbuild": "^2.0.0"
},
"peerDependencies": {
"astro": ">= 4.0.0"
}
}