-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "sqlmorpheus",
"version": "1.0.0",
"author": "JodliDev",
"keywords": [],
"license": "MIT",
"description": "",
"repository": {
"type": "git",
"url": "git://github.com/JodliDev/SqlMorpheus.git"
},
"bugs": {
"url": "https://github.com/JodliDev/SqlMorpheus/issues"
},
"homepage": "https://github.com/JodliDev/SqlMorpheus#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"build_and_publish": "npm run build && npm publish"
},
"devDependencies": {
"@testcontainers/mysql": "^11.7.1",
"@testcontainers/postgresql": "^11.10.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.0.13",
"@types/pg": "^8.16.0",
"@vitest/coverage-v8": "^3.2.4",
"better-sqlite3": "^12.2.0",
"mysql2": "^3.15.2",
"pg": "^8.16.3",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"escape-sql-string": "^1.2.2",
"polyfill-symbol-metadata": "^0.0.2"
}
}