-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.54 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
{
"name": "amend",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"typecheck": "turbo typecheck",
"test": "turbo test",
"test:desktop-git": "pnpm --filter desktop exec tsx ../../scripts/desktop-git-smoke.ts out",
"test:release": "node --test scripts/release-lib.test.mjs",
"verify": "pnpm test:release && pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"eval:wiki": "pnpm --filter @workspace/evals eval:wiki",
"eval:wiki-update": "pnpm --filter @workspace/evals eval:wiki-update",
"package:desktop": "pnpm --filter web build && pnpm --filter desktop package",
"make:desktop": "pnpm --filter web build && pnpm --filter desktop make",
"release:verify": "node scripts/release.mjs verify",
"release:collect": "node scripts/release.mjs collect",
"release:checksums": "node scripts/release.mjs checksums"
},
"devDependencies": {
"lefthook": "^2.1.10",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"oxlint-tsgolint": "^7.0.2001",
"turbo": "^2.9.18",
"typescript": "^6"
},
"packageManager": "pnpm@10.33.4",
"engines": {
"node": ">=22.13.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"dugite",
"esbuild",
"lefthook",
"lightningcss"
],
"patchedDependencies": {
"@earendil-works/pi-ai@0.80.6": "patches/@earendil-works__pi-ai@0.80.6.patch"
}
}
}