-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "query-builder-mysql",
"version": "3.3.0",
"author": "rpsoftechindia@gmail.com",
"license": "ISC",
"description": "Typescript Based Mysql And Mariadb Query Builder",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/rpsoftech/query-builder.git",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": {
"import": "./dist/esm/index.js",
"require": "./dist/index.js"
},
"default": "./dist/index.js"
}
},
"scripts": {
"start": "node -r ts-node/register ./test.ts",
"prepublishOnly": "npm run build:common && npm run build:es",
"start:watch": "nodemon",
"build:es": "tsc --project tsconfig.es.build.json",
"build:common": "tsc --project tsconfig.build.json",
"pack": "node pack"
},
"peerDependencies": {
"mariadb": "^3.1.1"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@vercel/ncc": "^0.38.3",
"mariadb": "^3.4.5",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"packageManager": "yarn@4.9.2"
}