forked from Pasta-Devs/Marinara-Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.28 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "marinara-engine",
"version": "1.5.9",
"private": true,
"description": "AI Chat & Roleplay Frontend — Conversation, Roleplay, Visual Novel",
"author": "Marianna",
"license": "AGPL-3.0",
"type": "module",
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=24 <26",
"pnpm": ">=10.33.2"
},
"scripts": {
"dev": "pnpm build:shared && pnpm --filter @marinara-engine/server --filter @marinara-engine/client -r --parallel run dev",
"dev:server": "pnpm --filter @marinara-engine/server dev",
"dev:client": "pnpm build:shared && pnpm --filter @marinara-engine/client dev",
"build": "pnpm --filter @marinara-engine/shared build && pnpm --filter @marinara-engine/server --filter @marinara-engine/client --parallel run build",
"build:shared": "pnpm --filter @marinara-engine/shared build",
"build:server": "pnpm --filter @marinara-engine/server build",
"build:client": "pnpm build:shared && pnpm --filter @marinara-engine/client build",
"check": "pnpm impeccable:check && pnpm lint && pnpm build",
"start": "node packages/server/dist/index.js",
"format": "prettier --write \"packages/**/*.{ts,tsx}\"",
"impeccable:check": "node ./scripts/check-impeccable-context.mjs",
"lint": "pnpm -r run lint",
"test": "node ./scripts/check-windows-installer-layout.mjs && pnpm -r run test",
"version:sync": "node ./scripts/sync-version.mjs",
"version:check": "node ./scripts/check-version-drift.mjs",
"backgroundremover:install": "node ./scripts/install-backgroundremover.mjs",
"backgroundremover:reinstall": "node ./scripts/install-backgroundremover.mjs --reinstall",
"guard:installer-artifacts": "node ./scripts/check-tracked-installers.mjs",
"release:notes": "node ./scripts/render-release-notes.mjs",
"clean": "pnpm -r --if-present run clean && node ./scripts/clean-workspace.mjs"
},
"devDependencies": {
"esbuild": "^0.27.7",
"prettier": "^3.8.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"onnxruntime-node",
"protobufjs"
],
"overrides": {
"onnxruntime-common": "1.24.3",
"onnxruntime-node": "1.24.3",
"onnxruntime-web": "1.24.3",
"protobufjs": "7.5.5",
"brace-expansion": "5.0.5",
"@anthropic-ai/sdk": "0.91.1"
}
}
}