-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1008 Bytes
/
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
{
"name": "@coresql/mysql2-auth-ed25519",
"version": "1.0.0",
"description": "mysql2 auth plugin for ed25519",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/coresql/mysql2-auth-ed25519.git"
},
"keywords": [
"mysql2",
"ed25519"
],
"author": "Matthew Peveler <[email protected]>",
"license": "LGPL-2.1-or-later",
"bugs": {
"url": "https://github.com/coresql/mysql2-auth-ed25519/issues"
},
"homepage": "https://github.com/coresql/mysql2-auth-ed25519#readme",
"devDependencies": {
"@swc/core": "^1.10.9",
"@swc/jest": "^0.2.37",
"@testcontainers/mariadb": "^10.17.1",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"mysql2": "^3.12.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"mysql2": ">=2.0.0"
},
"private": false
}