-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.73 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.73 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
{
"name": "sql-expr",
"version": "0.1.0",
"description": "A TypeScript library for building serializable SQL (PostgreSQL) filters with a safe user-generated approach. Utilizes a filter schema to ensure that only permitted filters are generated.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"sql",
"query",
"filter",
"where",
"builder",
"user-generated",
"serializable",
"safe",
"sql-injection-safe",
"parameterized",
"postgres",
"mysql",
"sqlite",
"slonik",
"knex",
"prisma",
"end-user-filters",
"dynamic-queries"
],
"author": {
"name": "Lars Hisken",
"email": "larshisken@proton.me"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/username/sql-expr.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"neverthrow": "^6.2.2",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"peerDependenciesMeta": {
"slonik": {
"optional": true
}
}
}