-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.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
{
"name": "cloudfront-markdown-for-llms",
"version": "0.1.0",
"description": "CDK project that configures CloudFront to serve Markdown content to LLMs based on the Accept header",
"author": "sh cloud software (https://www.sh-cloud.software)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sh-cloud-software/cloudfront-markdown-for-llms"
},
"keywords": [
"aws",
"cdk",
"cloudfront",
"markdown",
"llm"
],
"private": true,
"bin": {
"cloudfront-markdown-for-llms": "bin/cloudfront-markdown-for-llms.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.990.0",
"@types/aws-lambda": "^8.10.160",
"@types/jest": "^30",
"@types/node": "^24.10.1",
"aws-cdk": "2.1102.0",
"jest": "^30",
"ts-jest": "^29",
"ts-node": "^10.9.2",
"typescript": "~5.9.3"
},
"dependencies": {
"@types/turndown": "^5.0.6",
"aws-cdk-lib": "^2.235.1",
"constructs": "^10.0.0",
"turndown": "^7.2.2"
}
}