-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.9 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "typesafe-query-builder",
"version": "4.0.0-rc.1",
"license": "MIT",
"author": "Erik Soehnel",
"homepage": "https://github.com/hoeck/typesafe-query-builder",
"repository": "github:hoeck/typesafe-query-builder",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"tsd": {
"directory": "test-d",
"compilerOptions": {
"noErrorTruncation": true
}
},
"files": [
"dist"
],
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"dts": true,
"format": [
"esm"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"scripts": {
"build": "tsup src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:types": "tsd -f test-d",
"typecheck": "tsc --project tsconfig.json --noEmit",
"typecheck:watch": "tsc --project tsconfig.json --noEmit --watch --preserveWatchOutput --pretty",
"typecheck:verbose": "tsc --project tsconfig.json --noEmit --noErrorTruncation",
"test-database:start": "docker run --rm -e POSTGRES_PASSWORD=password --publish 54321:5432 --volume $PWD/test/helpers:/docker-entrypoint-initdb.d postgres:latest",
"test-database:psql": "docker run --network=host --rm -it -e PGPASSWORD=password postgres:latest psql --port=54321 --host=127.0.0.1 --user=postgres test_schema",
"build-readme": "markdown-toc -i --maxdepth 4 README.md"
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/pg": "^8.11.6",
"jest": "^29.7.0",
"markdown-toc": "^1.2.0",
"pg": "^8.12.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"tsd": "^0.31.1",
"tslib": "^2.6.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"dependencies": {}
}