-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 3.57 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 3.57 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
{
"name": "hyperneo",
"private": true,
"license": "Apache-2.0",
"type": "module",
"packageManager": "bun@1.4.2",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "echo \"Error: This is a monorepo. Do not run 'bun test', 'bun run test', or 'npm test' from the root.\" && echo \"\" && echo \"For daemon unit shards: ./scripts/test-daemon.sh\" && echo \"For targeted daemon tests: cd packages/daemon && bun\" \"test ./tests/unit/some-test.test.ts\" && echo \"For web tests: cd packages/web && bunx vitest run\" && echo \"For e2e tests: make run-e2e TEST=tests/features/foo.e2e.ts\" && echo \"See CLAUDE.md for more details.\" && exit 1",
"dev": "make dev",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "bun node_modules/typescript7/bin/tsc --build --noEmit",
"typecheck:tests": "bun node_modules/typescript7/bin/tsc -p packages/daemon/tsconfig.tests.json --noEmit",
"knip": "knip --include files,dependencies,exports --no-config-hints",
"knip:all": "knip",
"check:session-guards": "./scripts/check-session-deletion-callers.sh",
"check:operation-names": "bun run scripts/check-operation-names.ts",
"test:pre-commit": "HYPERNEO_ALLOW_ROOT_TEST=1 bun test scripts/pre-commit.test.ts",
"test:strip-comments": "HYPERNEO_ALLOW_ROOT_TEST=1 bun test scripts/strip-comments.test.ts",
"test:ci-balance-report": "HYPERNEO_ALLOW_ROOT_TEST=1 bun test scripts/ci-balance-report.test.ts",
"test:generate-shard-weights": "HYPERNEO_ALLOW_ROOT_TEST=1 bun test scripts/generate-shard-weights.test.ts",
"test:flaky-test-runner": "HYPERNEO_ALLOW_ROOT_TEST=1 bun test scripts/flaky-test-runner.test.ts",
"test:package-npm": "HYPERNEO_ALLOW_ROOT_TEST=1 bun test scripts/package-npm.test.ts",
"test:rebuild-daemon-db": "HYPERNEO_ALLOW_ROOT_TEST=1 bun test --timeout=60000 scripts/rebuild-daemon-db.test.ts",
"ci:balance-report": "bun run scripts/ci-balance-report.ts",
"check:db-schema-parity": "bun scripts/check-db-schema-parity.ts",
"check:test-quality": "bun scripts/check-test-quality.ts",
"check:test-matrix": "bash scripts/validate-test-matrix.sh",
"check:no-comments": "bun scripts/strip-comments.ts --check",
"check:raw-palette": "bun scripts/check-raw-palette.ts",
"test:theme-codemod": "HYPERNEO_ALLOW_ROOT_TEST=1 bun test scripts/theme-codemod.test.ts",
"strip-comments": "bun scripts/strip-comments.ts",
"check:online-shards": "scripts/test-online.sh --verify",
"architecture:file-size-report": "bun run scripts/architecture-file-size-report.ts",
"check": "bun run check:no-comments && bun run format:check && bun run lint && bun run typecheck && bun run knip && bun run check:session-guards && bun run check:operation-names && bun run check:db-schema-parity && bun run check:test-quality && bun run check:test-matrix && bun run check:online-shards && bun run check:raw-palette",
"db:maintain-message-search": "bun run scripts/maintain-message-search-db.ts",
"perf:daemon-live-scale": "bun packages/daemon/scripts/benchmark/live-scale-query-regression.ts",
"test:proxy:start": "./scripts/dev-proxy.sh start",
"test:proxy:stop": "./scripts/dev-proxy.sh stop",
"test:proxy:status": "./scripts/dev-proxy.sh status",
"test:proxy:restart": "./scripts/dev-proxy.sh restart"
},
"devDependencies": {
"@biomejs/biome": "2.5.13",
"@testing-library/preact": "3.2.4",
"knip": "6.35.1",
"oxlint": "1.82.0",
"typescript": "6.0.3",
"typescript7": "npm:typescript@7.0.2",
"tsx": "4.23.13"
}
}