-
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.54 KB
/
package.json
File metadata and controls
36 lines (36 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
{
"name": "qferry",
"version": "0.0.0",
"private": true,
"type": "module",
"license": "Apache-2.0",
"author": "RayStorm",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck",
"sync:qferry-plugin": "node scripts/sync-qferry-plugin-runtime.mjs",
"dev:sync-plugin-cache": "node scripts/sync-installed-plugin-cache.mjs",
"dev:sync-plugin-cache:all": "node scripts/sync-installed-plugin-cache.mjs --include-windows --include-wsl",
"verify:qferry-plugin": "node scripts/verify-qferry-plugin.mjs",
"check:generated": "pnpm run sync:qferry-plugin && git diff --exit-code -- plugins/qferry/dist",
"gate:commit": "pnpm test && pnpm run typecheck",
"gate:local": "pnpm run gate:commit && pnpm run check:generated && pnpm run verify:qferry-plugin && pnpm run qferry:e2e:plugin-fixture",
"check": "pnpm run gate:local",
"qferry:e2e:fixture": "pnpm --filter @qferry/core fixture:e2e",
"qferry:e2e:chatgpt-fixture": "pnpm --filter @qferry/chatgpt-app fixture:e2e",
"qferry:e2e:plugin-fixture": "node scripts/run-qferry-plugin-fixture-e2e.mjs",
"qferry:e2e:plugin-qq-readonly": "node scripts/run-qferry-plugin-qq-readonly-e2e.mjs",
"qferry:e2e:plugin-qq-move-spam": "node scripts/run-qferry-plugin-qq-move-spam-e2e.mjs",
"dev:install-hooks": "node scripts/install-git-hooks.mjs"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"esbuild": "^0.28.0",
"typescript": "^5.9.3",
"vitest": "^4.0.8",
"zod": "^4.4.3"
}
}