-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.09 KB
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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@datocms/astro",
"description": "A set of components and utilities to work faster with DatoCMS in Astro projects.",
"type": "module",
"version": "0.6.16",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://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 .",
"build": "npx astro check",
"format": "npm run toc && npx prettier . --write",
"toc": "doctoc --github README.md src",
"test": "echo 1",
"changeset": "changeset",
"release": "release-toolchain",
"release:next": "release-toolchain --tag next",
"prepublishOnly": "release-toolchain --assert-release"
},
"exports": {
".": "./src/index.ts",
"./Image": "./src/Image/index.ts",
"./StructuredText": "./src/StructuredText/index.ts",
"./Seo": "./src/Seo/index.ts",
"./QueryListener": "./src/QueryListener/index.ts",
"./ContentLink": "./src/ContentLink/index.ts"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"src",
"CHANGELOG.md"
],
"dependencies": {
"@0no-co/graphql.web": "^1.0.7",
"@datocms/content-link": "^0.3.19",
"datocms-listen": "^1.0.1",
"datocms-structured-text-generic-html-renderer": "^6.0.0",
"datocms-structured-text-utils": "^6.0.1"
},
"peerDependencies": {
"astro": "*"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@changesets/cli": "^3.0.1",
"@datocms/release-toolchain": "github:datocms/release-toolchain#v1.2.0",
"astro": "^5.16.15",
"doctoc": "^2.2.1",
"pkg-pr-new": "^0.0.88",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "npm run format"
}
}