forked from 404-Waifu-Not-Found/SyntaxSenpai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.45 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
{
"name": "syntax-senpai",
"version": "0.0.1",
"packageManager": "pnpm@8.13.0",
"description": "AI-powered waifu companion for developers",
"private": true,
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"desktop:quick": "pnpm --filter syntax-senpai-desktop run dev:quick",
"dev:mobile": "turbo run dev --filter=syntax-senpai-mobile",
"dev:desktop": "turbo run dev --filter=syntax-senpai-desktop",
"dev:runtime": "pnpm --filter syntax-senpai-runtime run dev",
"build": "turbo run build",
"test": "turbo run test",
"test:unit": "pnpm -r --if-present run test:unit",
"lint": "turbo run lint",
"typecheck": "tsc -p tsconfig.base.json --noEmit",
"docker:build": "docker build -f Dockerfile -t syntax-senpai-runtime:local .",
"docker:up": "docker compose up --build",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@types/node": "20.3.1",
"prebuild-install": "^7.1.3",
"tsdown": "0.21.7",
"turbo": "^2.9.14",
"typescript": "^5.7.2",
"vitest": "^4.1.3"
},
"pnpm": {
"overrides": {
"@xmldom/xmldom": "0.8.13",
"brace-expansion": "5.0.6",
"gh-pages": ">=5.0.0",
"postcss": "8.5.15",
"tar": "7.5.15",
"uuid": "11.1.1",
"ws": "8.21.0",
"shell-quote": "1.8.4",
"tmp": "0.2.7",
"esbuild": "0.28.1"
}
},
"engines": {
"node": ">=20.0.0",
"npm": ">=11.0.0"
}
}