-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.93 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.93 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
{
"author": {
"email": "gajus@gajus.com",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.27.1",
"@babel/traverse": "^7.27.1",
"@babel/types": "^7.27.1",
"multiline-ts": "^4.0.1"
},
"description": "Automatically transforms Slonik's sql.type() calls to use a caching mechanism that prevents expensive re-initialization of Zod schemas, improving performance without requiring code changes.",
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@slonik/sql-tag": "^46.6.0",
"@types/node": "^18.15.3",
"babel-plugin-tester": "^11.0.4",
"cspell": "^8.19.3",
"eslint": "^9.25.1",
"eslint-config-canonical": "^44.9.5",
"semantic-release": "^20.1.3",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
},
"engines": {
"node": ">=22"
},
"exports": {
".": {
"import": "./dist/buildSqlTag.js",
"types": "./dist/buildSqlTag.d.ts"
},
"./helper": {
"import": "./dist/helper.js",
"types": "./dist/helper.d.ts"
}
},
"files": [
"./src",
"./dist"
],
"keywords": [
"slonik",
"sql",
"type",
"cache"
],
"license": "BSD-3-Clause",
"main": "./dist/buildSqlTag.js",
"name": "babel-plugin-slonik-sql-type-cache",
"repository": {
"type": "git",
"url": "https://github.com/gajus/babel-plugin-slonik-sql-type-cache"
},
"scripts": {
"build": "rm -fr ./dist && tsc --project tsconfig.build.json",
"dev": "tsc --watch",
"lint": "npm run lint:tsc && npm run lint:eslint && npm run lint:cspell",
"lint:cspell": "cspell './**/*.{ts,tsx}' --no-progress --gitignore",
"lint:eslint": "eslint --color .",
"lint:tsc": "tsc",
"test:vitest": "vitest --run --passWithNoTests"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "1.0.0"
}