-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.79 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
{
"name": "@aws/aurora-dsql-prisma-tools",
"version": "0.1.0",
"description": "CLI tools for using Prisma with Amazon Aurora DSQL",
"main": "dist/cli/index.js",
"bin": {
"aurora-dsql-prisma": "dist/cli/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"provenance": true,
"access": "public"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "tsc",
"pretest": "npm run build",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"validate": "tsx src/cli/index.ts validate",
"dsql-transform": "tsx src/cli/index.ts transform",
"dsql-migrate": "tsx src/cli/index.ts migrate",
"dsql-lint": "tsx src/cli/index.ts lint"
},
"keywords": [
"prisma",
"aurora",
"dsql",
"aws",
"database",
"postgresql"
],
"author": "Amazon Web Services",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/awslabs/aurora-dsql-orms.git",
"directory": "node/prisma"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@aws-sdk/dsql-signer": "^3.980.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.0",
"prettier": "4.0.0-alpha.13",
"prisma": "^7.3.0",
"ts-jest": "^29.4.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"overrides": {
"lodash": "^4.17.23",
"hono": "^4.11.10",
"fast-xml-parser": "^5.4.1"
},
"comments": {
"overrides": {
"lodash": "CVE-2025-13465 - Remove when prisma updates to lodash >=4.17.23",
"hono": "CVE-2026-24472 - Remove when prisma updates to hono >=4.11.10",
"fast-xml-parser": "Stack overflow in XMLBuilder - Remove when @aws-sdk/xml-builder updates to fast-xml-parser >=5.3.8"
}
}
}