38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"name": "pig",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "PIG \u2014 Prime Intellect Growth. An open-source, agent-native CRM for two-sided AI-compute companies.",
|
|
"license": "Apache-2.0",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"workspaces": [
|
|
"packages/*",
|
|
"apps/*"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run build --workspaces --if-present",
|
|
"typecheck": "npm run typecheck --workspaces --if-present",
|
|
"test": "npm run test --workspaces --if-present",
|
|
"test:e2e": "npm run test:e2e -w @pig/api",
|
|
"lint": "npm run lint --workspaces --if-present",
|
|
"dev:api": "npm run dev -w @pig/api",
|
|
"dev:web": "npm run dev -w @pig/web",
|
|
"dev:mcp": "npm run dev -w @pig/mcp",
|
|
"dev:piggy": "npm run dev -w @pig/piggy",
|
|
"pig": "tsx apps/cli/src/main.ts",
|
|
"db:generate": "npm run generate -w @pig/db",
|
|
"db:migrate": "npm run migrate -w @pig/db",
|
|
"db:seed": "npm run seed -w @pig/db",
|
|
"db:demo": "npm run demo -w @pig/db"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.2",
|
|
"playwright": "^1.62.1",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|