-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.3 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.3 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
{
"name": "sql-render",
"version": "0.1.4",
"description": "Type-safe {{variable}} templating for .sql files with built-in injection protection",
"author": "bug3",
"repository": {
"type": "git",
"url": "git+https://github.com/bug3/sql-render.git"
},
"bugs": {
"url": "https://github.com/bug3/sql-render/issues"
},
"homepage": "https://github.com/bug3/sql-render#readme",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ tests/",
"prepublishOnly": "npm run build"
},
"keywords": [
"sql",
"sql-template",
"sql-render",
"sql-injection",
"athena",
"aws-athena",
"trino",
"query-builder",
"type-safe",
"schema-validation",
"typescript"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.5.2",
"eslint": "^9.39.4",
"sql-formatter": "^15.7.3",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
}
}