-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 927 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 927 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
36
37
38
39
{
"name": "tache-cli",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": "dist/src/main.js",
"pkg": {
"targets": [
"node18-linux-x64"
]
},
"scripts": {
"start": "node dist/main.js",
"dev": "pnpx tsx src/main.ts",
"build": "esbuild src/main.ts --bundle --platform=node --outfile=dist/main.js && pnpx pkg dist/main.js -t node18-linux-x64 -o bin/tache",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.33.0",
"dependencies": {
"fs-extra": "^11.3.4",
"pg": "^8.20.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.8",
"zod": "^4.3.6"
},
"devDependencies": {
"@jest/globals": "^30.3.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.0",
"esbuild": "0.28.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.9",
"typescript": "^5.9.3"
}
}