-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.93 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.93 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "data-api-client",
"version": "2.1.4",
"description": "A lightweight wrapper that simplifies working with the Amazon Aurora Serverless Data API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./compat/pg": {
"types": "./dist/compat/pg.d.ts",
"import": "./dist/compat/pg.js",
"require": "./dist/compat/pg.js"
},
"./compat/mysql2": {
"types": "./dist/compat/mysql2.d.ts",
"import": "./dist/compat/mysql2.js",
"require": "./dist/compat/mysql2.js"
},
"./compat": {
"types": "./dist/compat/index.d.ts",
"import": "./dist/compat/index.js",
"require": "./dist/compat/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js",
"require": "./dist/types.js"
}
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"prebuild": "rm -rf dist",
"test": "npm run build && vitest run src/",
"test:unit": "npm run build && vitest run src/",
"test:int:core": "npm run build && vitest run integration-tests/mysql.int.test.ts integration-tests/pg-compat.int.test.ts",
"test:int:core:mysql": "npm run build && vitest run integration-tests/mysql.int.test.ts",
"test:int:core:pg": "npm run build && vitest run integration-tests/postgres.int.test.ts",
"test:int:compat": "npm run build && vitest run integration-tests/pg-compat.int.test.ts integration-tests/mysql2-compat.int.test.ts",
"test:int:compat:pg": "npm run build && vitest run integration-tests/pg-compat.int.test.ts",
"test:int:compat:mysql": "npm run build && vitest run integration-tests/mysql2-compat.int.test.ts",
"test:int:orm:kysely": "npm run build && vitest run integration-tests/kysely-pg.int.test.ts integration-tests/kysely-mysql.int.test.ts",
"test:int:orm:kysely:pg": "npm run build && vitest run integration-tests/kysely-pg.int.test.ts",
"test:int:orm:kysely:mysql": "npm run build && vitest run integration-tests/kysely-mysql.int.test.ts",
"test:int:orm:drizzle": "npm run build && vitest run integration-tests/drizzle-pg.int.test.ts && vitest run integration-tests/drizzle-mysql.int.test.ts",
"test:int:orm:drizzle:pg": "npm run build && vitest run integration-tests/drizzle-pg.int.test.ts",
"test:int:orm:drizzle:mysql": "npm run build && vitest run integration-tests/drizzle-mysql.int.test.ts",
"test:int:orm:knex": "npm run build && vitest run integration-tests/knex-mysql.int.test.ts",
"test-ci": "npm run build && eslint src && vitest run src/",
"lint": "eslint src",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeremydaly/data-api-client.git"
},
"keywords": [
"serverless",
"data-api",
"aurora",
"aws"
],
"author": "Jeremy Daly <jeremy@jeremydaly.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeremydaly/data-api-client/issues"
},
"homepage": "https://github.com/jeremydaly/data-api-client#readme",
"imports": {
"#fixtures/*": "./fixtures/*"
},
"devDependencies": {
"@aws-sdk/client-rds-data": "^3.712.0",
"@types/node": "^24.6.2",
"@types/pg": "^8.15.5",
"@types/sqlstring": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"@vitest/ui": "^3.2.4",
"drizzle-orm": "^0.44.6",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"knex": "^3.1.0",
"kysely": "^0.28.7",
"pg": "^8.16.3",
"prettier": "^2.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"sqlstring": "^2.3.2"
},
"peerDependencies": {
"@aws-sdk/client-rds-data": "^3.0.0"
},
"peerDependenciesMeta": {
"@aws-sdk/client-rds-data": {
"optional": true
}
},
"files": [
"dist"
]
}