-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.44 KB
/
package.json
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
{
"name": "query-weaver",
"version": "0.1.5",
"description": "SQL query builder using template string literal",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.mjs",
"require": "./dist/index.cjs.js"
}
},
"scripts": {
"clean": "rimraf dist",
"test": "vitest run",
"test:watch": "vitest",
"build": "pnpm run clean && pnpm run build:esbuild && pnpm run build:types",
"build:esbuild": "node -r esbuild-register build.ts",
"build:types": "tsc --declaration --emitDeclarationOnly --declarationDir './dist'",
"prepack": "pnpm run build && pnpm run test",
"format": "biome format ./src",
"format:fix": "biome format ./src --write",
"lint": "biome lint ./src",
"lint:fix": "biome lint ./src --write",
"type-check": "tsc --noEmit -p tsconfig.json",
"prepare": "husky"
},
"author": "[email protected]",
"homepage": "https://github.com/kikuchan/query-weaver#readme",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/pg": "^8.11.10",
"esbuild": "^0.24.0",
"esbuild-node-externals": "^1.15.0",
"esbuild-register": "^3.6.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"pg": "^8.13.1",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}