-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 4.21 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 4.21 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "portreeve-workspace",
"version": "0.1.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TrentBrown/portreeve.git"
},
"homepage": "https://github.com/TrentBrown/portreeve#readme",
"bugs": {
"url": "https://github.com/TrentBrown/portreeve/issues"
},
"type": "module",
"packageManager": "bun@1.3.14",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"branding:generate": "\"$npm_execpath\" scripts/generate-brand-assets.js",
"build": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/build.js",
"check": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" run docs:check && \"$npm_execpath\" run typecheck && \"$npm_execpath\" run lint && \"$npm_execpath\" run format:check && \"$npm_execpath\" test",
"desktop:package": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" run docs:check && \"$npm_execpath\" scripts/package-desktop.js",
"desktop:inspect": "PORTREEVE_RELEASE_BASE_URL=https://github.com/TrentBrown/portreeve/releases/download PORTREEVE_HOMEPAGE_URL=https://github.com/TrentBrown/portreeve \"$npm_execpath\" run release:build && node scripts/inspect-desktop.js",
"desktop:runtime-verify": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/verify-desktop-runtimes.js",
"desktop:start": "electron apps/desktop",
"docs:check": "\"$npm_execpath\" scripts/generate-client-guides.js --check",
"docs:generate": "\"$npm_execpath\" scripts/generate-client-guides.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"mcp:release-verify": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/verify-mcp-release.js",
"release:build": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/release.js",
"release:finalize-desktop": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/finalize-desktop-distribution.js",
"release:inspect": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/inspect-release-candidate.js",
"release:homebrew-smoke": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/smoke-homebrew-candidate.js",
"release:merge-native-evidence": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/merge-native-release-evidence.js",
"release:native-evidence": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/collect-native-release-evidence.js",
"release:package-desktop": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/package-desktop-release.js",
"release:prepare": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/prepare-release.js",
"release:publish": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/publish-release.js",
"release:qualify-trust": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/qualify-trusted-release.js",
"release:produce-apple-trust": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/produce-apple-trusted-artifacts.js",
"release:apple-native-evidence": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/apple-native-trust-evidence.js",
"release:verify": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/verify-release.js",
"runtime:spike": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" test test/runtime/compiled-runtime.test.js",
"stacks:verify": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" scripts/verify-stack-feature.js",
"test": "\"$npm_execpath\" run toolchain:check && \"$npm_execpath\" test",
"toolchain:check": "\"$npm_execpath\" scripts/check-toolchain.js",
"typecheck": "tsc -p jsconfig.json"
},
"dependencies": {
"@modelcontextprotocol/server": "2.0.0",
"commander": "15.0.0",
"zod": "4.4.3"
},
"devDependencies": {
"@electron/asar": "4.2.1",
"@electron/packager": "20.0.4",
"@eslint/js": "10.0.1",
"@types/bun": "1.3.14",
"@types/node": "22.20.1",
"electron": "43.2.0",
"eslint": "10.8.0",
"globals": "17.8.0",
"playwright": "1.62.1",
"prettier": "3.9.6",
"typescript": "7.0.2"
}
}