-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·105 lines (105 loc) · 5.53 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·105 lines (105 loc) · 5.53 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "mycontext",
"version": "0.1.0",
"license": "Elastic-2.0",
"private": true,
"description": "MyContext — IM intelligence desktop platform",
"type": "module",
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=22.17.0 <23",
"pnpm": ">=10.13.0"
},
"scripts": {
"dev": "pnpm run verify:toolchain && pnpm run prepare:bin && pnpm run native:electron && pnpm --filter @mycontext/desktop dev",
"build": "pnpm run typecheck && pnpm run prepare:bin && pnpm --filter @mycontext/desktop build",
"build:app": "node scripts/rebuild-electron.mjs && pnpm run prepare:bin && node scripts/build-python-bundle.mjs && pnpm --filter @mycontext/desktop exec electron-vite build",
"dist:mac": "pnpm run build:app && electron-builder --mac --dir --config apps/desktop/electron-builder.yml",
"dist:mac:dmg": "pnpm run build:app && electron-builder --mac dmg --config apps/desktop/electron-builder.yml",
"dist:repack": "electron-builder --mac --dir --config apps/desktop/electron-builder.yml",
"typecheck": "tsc -b --pretty false",
"typecheck:tests": "tsc -p tests/tsconfig.json --noEmit --pretty false",
"lint": "eslint apps packages scripts tests --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "pnpm run native:node && vitest run --exclude 'tests/externals/**'",
"test:externals": "pnpm run native:node && node scripts/run-externals.mjs",
"coverage": "pnpm run native:node && vitest run --coverage --exclude 'tests/externals/**'",
"smoke": "pnpm run native:node && node scripts/smoke.mjs",
"native:node": "node scripts/rebuild-node.mjs",
"native:electron": "node scripts/rebuild-electron.mjs",
"setup:python": "node scripts/setup-python.mjs",
"vendor:python": "node scripts/vendor-python.mjs",
"verify:toolchain": "node scripts/verify-toolchain.mjs",
"check:trademarks": "node scripts/check-trademarks.mjs",
"check:migration-checksums": "node scripts/check-migration-checksums.mjs",
"check:probe-templates": "node scripts/check-probe-templates.mjs",
"check:gate-parity": "node scripts/check-gate-parity.mjs",
"check:typography": "node scripts/check-typography-classes.mjs",
"check:vendor-clean": "node scripts/check-vendor-clean.mjs",
"check:vendor-integrity": "node scripts/check-vendor-integrity.mjs",
"check:package-wiring": "node scripts/check-package-wiring.mjs",
"check:desktop-bundle": "node scripts/check-desktop-bundle.mjs",
"check:fixture-envelope": "node scripts/check-fixture-envelope.mjs",
"check:figure-slots-sync": "node scripts/check-figure-slots-sync.mjs",
"check:all": "pnpm run check:trademarks && pnpm run check:vendor-clean && pnpm run check:vendor-integrity && pnpm run check:package-wiring && pnpm run check:desktop-bundle && pnpm run check:fixture-envelope && pnpm run check:kl-skill-sync && pnpm run check:no-local-data && pnpm run check:migration-checksums && pnpm run check:figure-slots-sync && pnpm run check:typography && pnpm run check:probe-templates && pnpm run check:gate-parity",
"verify": "pnpm run verify:toolchain && pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm run typecheck:tests && pnpm run check:all && pnpm run test && pnpm run smoke",
"verify:app": "node scripts/verify-app-flow.mjs",
"check:dashboard-ui": "node scripts/check-dashboard-ui.mjs",
"check:persona-ui": "node scripts/check-persona-ui.mjs",
"check:persona-ui-interact": "node scripts/check-persona-ui-interact.mjs",
"check:figure-ui": "node scripts/check-figure-ui.mjs",
"prepare:bin": "node scripts/prepare-bin.mjs",
"dev:dws-oss": "node scripts/dev-dws-oss.mjs",
"probe:dws": "node scripts/probe-dws.mjs",
"sync:brand-icons": "node scripts/sync-brand-icons.mjs",
"sync:figure-slots": "node scripts/sync-figure-slots.mjs",
"sync:kl-skill": "node scripts/sync-kl-skill.mjs",
"check:kl-skill-sync": "node scripts/check-kl-skill-sync.mjs",
"kl:env": "node scripts/kl-env.mjs",
"replay:raw": "pnpm run native:node && node scripts/replay-raw.mjs",
"reset:watermark": "pnpm run native:node && node scripts/reset-watermark.mjs",
"reset:vault": "pnpm run native:node && node scripts/reset-vault.mjs",
"purge:scope": "pnpm run native:node && node scripts/purge-scope.mjs",
"backfill": "pnpm run native:node && node scripts/backfill.mjs",
"sync:kl-graph": "node scripts/sync-kl-graph.mjs",
"export:kl": "pnpm run native:node && node scripts/export-kl.mjs",
"check:no-local-data": "node scripts/check-no-local-data.mjs"
},
"dependencies": {
"better-sqlite3": "12.11.1",
"i18next": "26.3.6",
"react-i18next": "17.0.11"
},
"devDependencies": {
"@electron/rebuild": "4.0.4",
"@eslint/js": "10.0.1",
"@tailwindcss/vite": "4.1.18",
"@testing-library/react": "16.3.0",
"@types/better-sqlite3": "7.6.13",
"@types/node": "22.15.3",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "4.1.10",
"dingtalk-workspace-cli": "1.0.57",
"electron": "43.2.0",
"electron-builder": "26.15.3",
"electron-vite": "5.0.0",
"esbuild": "0.25.12",
"eslint": "10.8.0",
"eslint-plugin-react-hooks": "7.1.1",
"framer-motion": "12.43.0",
"globals": "16.5.0",
"jsdom": "29.1.1",
"opencode-ai": "1.18.11",
"prettier": "3.5.3",
"react": "19.2.1",
"react-dom": "19.2.1",
"tailwindcss": "4.1.18",
"typescript": "5.9.3",
"typescript-eslint": "8.65.0",
"vite": "6.4.3",
"vitest": "4.1.10"
}
}