-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 7.57 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 7.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
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
106
107
108
109
110
111
112
{
"name": "@internal/monorepo",
"version": "8.0.0-rc.8",
"private": true,
"type": "module",
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a",
"scripts": {
"build": "turbo run build",
"build:agent": "node scripts/run-logged.mjs build pnpm build",
"dev": "turbo watch build --filter='./packages/**' --continue=dependencies-successful --output-logs=new-only",
"dev:all": "turbo watch build --continue=dependencies-successful --output-logs=new-only",
"format": "pnpm biome format --write .",
"test": "turbo run test --continue",
"test:all": "pnpm test:packages && pnpm test:examples && pnpm test:integration && pnpm test:e2e",
"test:packages": "turbo run build --filter='!./examples/**' --filter='!./test/**' && vitest run",
"test:packages:agent": "node scripts/run-logged.mjs test-packages pnpm test:packages",
"test:examples": "turbo run test --filter='./examples/**' --continue",
"test:e2e": "pnpm --filter e2e-tests test",
"test:e2e:agent": "node scripts/run-logged.mjs test-e2e pnpm test:e2e",
"test:integration": "pnpm --filter integration-tests test",
"test:integration:agent": "node scripts/run-logged.mjs test-integration pnpm test:integration",
"test:journeys": "pnpm --filter integration-tests test:journeys",
"test:vite-plugin": "pnpm --filter integration-tests test:vite-plugin",
"test:coverage": "pnpm coverage:packages",
"coverage:report": "node scripts/coverage-report.mjs",
"coverage:packages": "turbo run build --filter='!./examples/**' --filter='!./test/**' && vitest run --coverage",
"lint": "turbo run lint",
"lint:agent": "node scripts/run-logged.mjs lint pnpm lint",
"lint:fix": "pnpm biome check --write .",
"lint:fix:unsafe": "pnpm biome check --write --unsafe .",
"lint:packages": "turbo run lint --filter='!./examples/**'",
"lint:examples": "turbo run lint --filter='./examples/**'",
"lint:deps": "depcruise --config dependency-cruiser.config.mjs packages && node scripts/lint-framework-target-imports.mjs && node scripts/lint-app-space-id.mjs && node scripts/lint-single-import-root.mjs",
"lint:deps:agent": "node scripts/run-logged.mjs lint-deps pnpm lint:deps",
"lint:casts": "node scripts/lint-casts.mjs",
"lint:throws": "node scripts/lint-throws.mjs",
"lint:framework-vocabulary": "node scripts/lint-framework-vocabulary.mjs",
"lint:code": "node scripts/lint-no-contract-cast.mjs",
"lint:no-contract-cast": "node scripts/lint-no-contract-cast.mjs",
"lint:rules": "node scripts/validate-rules.mjs",
"lint:rules:symlinks": "node scripts/sync-agent-rules.mjs --check",
"lint:skills": "node scripts/validate-skills.mjs",
"lint:rules:footprint": "node scripts/rules-footprint.mjs --check",
"rules:sync": "node scripts/sync-agent-rules.mjs",
"rules:footprint": "node scripts/rules-footprint.mjs",
"lint:docs": "node scripts/validate-package-readmes.mjs",
"lint:manifests": "node scripts/validate-package-manifests.mjs && node scripts/validate-typescript-peer.mjs",
"lint:workflows": "node scripts/lint-workflow-triggers.mjs",
"test:scripts": "node --test scripts/coverage-config.test.mjs scripts/coverage-report.test.mjs scripts/lint-workflow-triggers.test.mjs scripts/validate-skills.test.mjs scripts/determine-version-utils.test.ts scripts/check-upgrade-coverage.test.mjs scripts/check-release-notes.test.mjs scripts/set-version-utils.test.ts scripts/check-publish-deps.test.mjs scripts/check-conformance.test.mjs scripts/check-publish-deps-pn-pins.test.mjs scripts/check-publish-deps-declarations.test.mjs scripts/validate-package-manifests.test.mjs scripts/validate-package-readmes.test.mjs scripts/publish-packages-utils.test.mjs scripts/check-clean-tree.test.mjs scripts/lint-casts.test.mjs scripts/lint-throws.test.mjs scripts/list-error-codes.test.mjs scripts/lint-framework-vocabulary.test.mjs scripts/lint-single-import-root.test.mjs scripts/lint-legacy-name.test.mjs scripts/lint-consumer-internal-imports.test.mjs scripts/sync-agent-rules.test.mjs scripts/validate-typescript-peer.test.mjs scripts/run-logged.test.mjs scripts/migrate-migrations-layout.test.mjs skills-contrib/review-fetch-phase/scripts/render-review-state.test.mjs skills-contrib/review-triage-phase/scripts/render-review-actions.test.mjs",
"bump-version": "node scripts/bump-version.ts",
"check:publish-deps": "node scripts/check-publish-deps.mjs",
"check:conformance": "node scripts/check-conformance.mjs",
"check:release-notes": "node scripts/check-release-notes.mjs",
"check:upgrade-coverage": "node scripts/check-upgrade-coverage.mjs",
"check:clean-tree": "node scripts/check-clean-tree.mjs",
"migrations:regen": "node scripts/regen-extension-migrations.mjs",
"migrations:regen:examples": "node scripts/regen-example-migrations.mjs",
"fixtures:emit": "DATABASE_URL=\"${DATABASE_URL:-postgres://postgres:postgres@localhost:5432/postgres}\" pnpm -r --filter='./examples/*' --filter='./apps/*' --filter='@internal/sql-builder' --filter='@internal/sql-orm-client' --filter='@internal/postgres' --filter='@internal/extension-supabase' --filter='e2e-tests' --filter='integration-tests' run --if-present emit && DATABASE_URL=\"${DATABASE_URL:-postgres://postgres:postgres@localhost:5432/postgres}\" pnpm -r --filter='./packages/3-extensions/*' run --if-present build:contract-space && pnpm migrations:regen && pnpm migrations:regen:examples",
"fixtures:check": "pnpm fixtures:emit && git diff --exit-code -- ':(glob)**/contract.*' ':(glob)**/expected.contract.json'",
"fixtures:check:agent": "node scripts/run-logged.mjs fixtures-check pnpm fixtures:check",
"typecheck": "turbo run typecheck",
"typecheck:agent": "node scripts/run-logged.mjs typecheck pnpm typecheck",
"typecheck:all": "pnpm typecheck && pnpm typecheck:examples",
"typecheck:packages": "turbo run typecheck --filter='!./examples/**'",
"typecheck:examples": "turbo run typecheck --filter='./examples/**'",
"record": "turbo run record --filter=@internal/cli --",
"clean": "turbo run clean",
"prepare": "husky && skills add ./skills-contrib --skill '*' --agent universal claude-code -y && node scripts/sync-agent-rules.mjs",
"errors:list": "node scripts/list-error-codes.mjs",
"check:error-reference": "node scripts/list-error-codes.mjs --verify docs/reference/error-reference.md",
"lint:consumer-internal-imports": "node scripts/lint-consumer-internal-imports.mjs",
"lint:legacy-name": "node scripts/lint-legacy-name.mjs",
"lint:publishability": "node scripts/lint-publishability.mjs"
},
"devDependencies": {
"@biomejs/biome": "2.5.8",
"@cursor/sdk": "^1.0.26",
"@internal/cli": "workspace:8.0.0-rc.8",
"@internal/framework-components": "workspace:8.0.0-rc.8",
"@internal/migration-tools": "workspace:8.0.0-rc.8",
"@repo/tsconfig": "workspace:8.0.0-rc.8",
"@types/node": "catalog:",
"@vitest/coverage-v8": "5.0.0-rc.2",
"arktype": "catalog:",
"dependency-cruiser": "^18.1.1",
"es-module-lexer": "2.3.1",
"gray-matter": "catalog:",
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"pathe": "^2.0.3",
"pkg-pr-new": "0.0.87",
"skills": "^1.5.22",
"tslib": "^2.8.1",
"tsx": "catalog:",
"turbo": "^2.10.9",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=24"
},
"pnpm": {
"overrides": {
"hono": "4.11.4",
"js-yaml": "3.14.2",
"lodash": "4.17.23",
"minimatch@3.1.2": "3.1.3",
"minimatch@9.0.5": "9.0.7",
"rollup": "4.59.0"
}
}
}