22 lines
472 B
JSON
22 lines
472 B
JSON
{
|
|
"name": "@pig/piggy",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"license": "Apache-2.0",
|
|
"type": "module",
|
|
"main": "./src/main.ts",
|
|
"scripts": {
|
|
"dev": "tsx watch src/main.ts",
|
|
"start": "tsx src/main.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "node --test --import tsx test/*.test.ts"
|
|
},
|
|
"dependencies": {
|
|
"@pig/core": "*",
|
|
"@pig/db": "*",
|
|
"drizzle-orm": "^0.38.3",
|
|
"zod": "^3.24.1",
|
|
"zod-to-json-schema": "^3.25.1"
|
|
}
|
|
}
|