-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.25 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
{
"name": "synapse-monorepo",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.5.0",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "pnpm --filter @synapse/desktop tauri dev",
"dev:web": "pnpm --filter @synapse/desktop dev",
"build": "pnpm --filter @synapse/desktop build",
"build:app": "pnpm --filter @synapse/desktop tauri build",
"bindings": "cargo test -p synapse-core",
"test": "pnpm test:ts && pnpm test:rust",
"test:ts": "pnpm --filter @synapse/desktop test",
"test:rust": "cargo test --workspace",
"lint": "pnpm lint:ts && pnpm lint:rust",
"lint:ts": "eslint .",
"lint:rust": "cargo clippy --workspace --all-targets -- -D warnings",
"fmt": "prettier --write . && cargo fmt",
"fmt:check": "prettier --check . && cargo fmt --check"
},
"comment": "Build-script allowlist and dependency overrides live in pnpm-workspace.yaml; pnpm 11 no longer reads them from here.",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.6.0",
"prettier": "^3.8.4",
"typescript-eslint": "^8.61.1"
}
}