forked from mintlify/astro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.71 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.71 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
{
"name": "@mintlify/astro",
"version": "1.0.0",
"description": "Mintlify integration for Astro",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./components": {
"types": "./dist/components.d.ts",
"import": "./dist/components.js"
},
"./helpers": {
"types": "./dist/helpers.d.ts",
"import": "./dist/helpers.js"
}
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"type": "tsc --noEmit",
"format": "prettier --write ."
},
"author": "Mintlify, Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mintlify/astro.git"
},
"bugs": {
"url": "https://github.com/mintlify/astro/issues"
},
"homepage": "https://github.com/mintlify/astro#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@mdx-js/mdx": "^3.1.1",
"@mintlify/common": "^1.0.716",
"@mintlify/validation": "^0.1.587",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@mintlify/components": "^1.0.4",
"@types/node": "^25.2.2",
"@types/react": "^19.2.13",
"astro": "^5.17.1",
"mdast": "^2.3.2",
"mdast-util-mdx": "^3.0.0",
"prettier": "^3.8.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@astrojs/mdx": "^4.3.1",
"@astrojs/react": "^4.4.2",
"@mintlify/components": "^1.0.4",
"astro": "^5",
"react": "^18 || ^19"
}
}