-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.55 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.55 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
{
"name": "@tinqerjs/monorepo",
"version": "0.0.25",
"description": "LINQ to SQL for TypeScript",
"type": "module",
"private": true,
"scripts": {
"build": "./scripts/build.sh",
"build:quick": "./scripts/build.sh --no-format",
"clean": "./scripts/clean.sh",
"clean:all": "./scripts/clean.sh --all",
"test": "npm test --workspaces",
"test:tinqer": "cd packages/tinqer && npm test",
"test:sql": "cd packages/pg-promise-adapter && npm test",
"test:pg-integration": "cd packages/pg-promise-adapter-integration && npm test",
"lint": "./scripts/lint-all.sh",
"lint:fix": "./scripts/lint-all.sh --fix",
"format": "./scripts/format-all.sh",
"format:check": "./scripts/format-all.sh --check",
"typecheck": "tsc --noEmit"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/chai": "5.2.2",
"@types/mocha": "10.0.10",
"@types/node": "24.3.3",
"@typescript-eslint/eslint-plugin": "8.43.0",
"@typescript-eslint/parser": "8.43.0",
"chai": "5.3.3",
"eslint": "9.35.0",
"globals": "15.15.0",
"mocha": "11.7.2",
"prettier": "3.6.2",
"ts-node": "10.9.2",
"typescript": "5.9.2",
"typescript-eslint": "^8.45.0"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tinqerjs/tinqer.git"
},
"keywords": [
"linq",
"sql",
"query",
"builder",
"typescript",
"orm",
"database",
"postgres",
"mysql"
],
"author": "WebPods",
"license": "MIT"
}