-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"name": "node-condition-builder",
"version": "1.0.6",
"description": "A lightweight TypeScript library for building parameterized SQL WHERE clauses. It generates safe, injection-free condition strings with proper placeholder indexing for PostgreSQL and MySQL",
"repository": {
"type": "git",
"url": "https://github.com/LucaRainone/node-condition-builder"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"llm.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run lint && npm test && npm run build",
"test": "node --test 'tests/**/*.test.ts'",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"sql",
"query-builder",
"where-clause",
"condition-builder",
"parameterized-queries",
"no-dependencies",
"postgresql",
"mysql",
"typescript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.2.3",
"eslint": "^9.39.2",
"jiti": "^2.6.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
}
}