20 lines
381 B
JSON
20 lines
381 B
JSON
{
|
|
"name": "@makers3d/worker",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsx watch src/index.ts",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"pg": "^8.16.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/pg": "^8.15.6"
|
|
}
|
|
}
|
|
|