mirror of
https://github.com/sortedcord/omnia.git
synced 2026-07-22 03:52:48 +05:30
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "omnia",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "",
|
|
"scripts": {
|
|
"build": "tsc -b",
|
|
"build:web": "pnpm --filter landing build",
|
|
"build:docs": "pnpm --filter docs build",
|
|
"build:gui": "pnpm --filter @omnia/gui build",
|
|
"build:all": "pnpm build && pnpm build:web && pnpm build:docs && pnpm build:gui",
|
|
"dev:web": "pnpm --filter landing dev",
|
|
"dev:docs": "pnpm --filter docs dev",
|
|
"dev:gui": "pnpm --filter @omnia/gui dev",
|
|
"clean": "git clean -xfd",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier . --write",
|
|
"format:check": "prettier . --check",
|
|
"watch": "tsc -b --watch",
|
|
"test": "vitest run --project unit",
|
|
"test:watch": "vitest --project unit",
|
|
"test:evals": "vitest run --project evals"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devEngines": {
|
|
"packageManager": {
|
|
"name": "pnpm",
|
|
"version": "^11.9.0",
|
|
"onFail": "download"
|
|
}
|
|
},
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"better-sqlite3": "^12.11.1",
|
|
"eslint": "^10.6.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"globals": "^17.7.0",
|
|
"prettier": "^3.9.4",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.62.1",
|
|
"vitest": "^4.1.9",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"dependencies": {
|
|
"@langchain/google-genai": "^2.2.0",
|
|
"@types/node": "^20.19.43",
|
|
"dotenv": "^17.4.2"
|
|
}
|
|
}
|