-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.63 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
61
62
63
64
65
66
{
"name": "@datocms/astro",
"description": "A set of components and utilities to work faster with DatoCMS in Astro projects.",
"type": "module",
"version": "0.4.1",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git://github.com/datocms/astro-datocms.git"
},
"homepage": "https://github.com/datocms/astro-datocms",
"license": "MIT",
"author": "Stefano Verna <s.verna@datocms.com>",
"contributors": [
"Silvano Stralla <silvano@datocms.com>"
],
"keywords": [
"astro",
"withastro",
"astro-component",
"datocms",
"typescript",
"ui"
],
"scripts": {
"prepare": "npx simple-git-hooks",
"lint": "prettier --check .",
"format": "npm run toc && npx prettier . --write",
"toc": "doctoc --github README.md src",
"test": "echo 1"
},
"exports": {
".": "./src/index.ts",
"./Image": "./src/Image/index.ts",
"./StructuredText": "./src/StructuredText/index.ts",
"./Seo": "./src/Seo/index.ts",
"./QueryListener": "./src/QueryListener/index.ts"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"src"
],
"dependencies": {
"@0no-co/graphql.web": "^1.0.7",
"datocms-listen": "^1.0.1",
"datocms-structured-text-generic-html-renderer": "^4.0.1",
"datocms-structured-text-utils": "^4.0.1"
},
"peerDependencies": {
"astro": "*"
},
"devDependencies": {
"astro": "^4.13.1",
"doctoc": "^2.2.1",
"np": "^10.0.7",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4"
},
"simple-git-hooks": {
"pre-commit": "npm run format"
}
}