-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 840 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 840 Bytes
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
{
"name": "@rocket/sql-client",
"version": "0.7.0-alpha",
"description": "SQL Client for Rocket",
"main": "index.js",
"scripts": {
"start": "node build/src/index.js",
"dev": "npm run build && npm run start",
"compile": "tsup ./src",
"test": "jest",
"lint:check": "gts lint",
"lint:fix": "gts fix",
"clean": "gts clean",
"build": "tsc",
"prepare": "npm run build",
"pretest": "npm run build",
"posttest": "npm run lint:check"
},
"keywords": [],
"author": "Abhishek Chatterjee",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.7.5",
"@types/pg": "^8.11.10",
"gts": "^6.0.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"dependencies": {
"pg": "^8.13.1"
}
}