-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.91 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
67
68
69
70
71
72
73
{
"name": "gatsby-mdx-tts",
"version": "1.0.0",
"description": "Adds speech output to your Gatsby site using Amazon Polly.",
"homepage": "https://github.com/flogy/gatsby-mdx-tts",
"bugs": {
"url": "https://github.com/flogy/gatsby-mdx-tts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flogy/gatsby-mdx-tts.git"
},
"main": "index.js",
"scripts": {
"build": "tsc -b",
"test": "jest",
"prepublishOnly": "npm run build && npm run test",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"author": "Florian Gyger <info@floriangyger.ch>",
"license": "MIT",
"keywords": [
"gatsby",
"gatsby-plugin",
"tts",
"text-to-speech",
"aws",
"polly",
"mdx",
"remark",
"markdown"
],
"dependencies": {
"@aws-sdk/client-polly": "^3.312.0",
"@aws-sdk/credential-providers": "^3.312.0",
"isomorphic-fetch": "^3.0.0",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@changesets/cli": "^2.26.1",
"@testing-library/react": "^14.0.0",
"@types/isomorphic-fetch": "0.0.36",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"babel-jest": "^29.5.0",
"gatsby": ">=5.8.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.7",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"remark": "^13.0.0",
"remark-mdx": "^2.3.0",
"remark-parse": "^10.0.1",
"to-vfile": "^7.2.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"unified": "^10.1.2",
"vitest": "^0.30.1"
},
"peerDependencies": {
"gatsby": ">=5.8.1",
"gatsby-plugin-mdx": ">=5.8.0",
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
}
}