-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 4.67 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 4.67 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
{
"name": "pretable",
"private": true,
"description": "A React data grid for AI product surfaces with wrapped text, variable-height rows, streaming-friendly rendering, and benchmarked virtualization.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cacheplane/pretable.git"
},
"homepage": "https://pretable.ai",
"bugs": {
"url": "https://github.com/cacheplane/pretable/issues"
},
"engines": {
"node": "^24.15.0",
"pnpm": ">=10.12.1"
},
"packageManager": "pnpm@10.12.1",
"type": "module",
"scripts": {
"api": "pnpm --filter @pretable/core api && pnpm --filter @pretable/react api && pnpm --filter @pretable/ui api && pnpm --filter @pretable/stream-adapter api",
"api:check": "pnpm --filter @pretable/core api:check && pnpm --filter @pretable/react api:check && pnpm --filter @pretable/ui api:check && pnpm --filter @pretable/stream-adapter api:check",
"bench:budgets": "node ./scripts/check-bench-budgets.mjs",
"bench:e2e": "node ./scripts/bench-e2e.mjs",
"bench:matrix": "node ./scripts/bench-matrix.mjs",
"bench:memory": "node ./scripts/bench-e2e.mjs apps/bench/tests/resident-cap-memory.spec.ts",
"bench:row-model:gate": "node ./scripts/bench-row-model-gate.mjs",
"build": "pnpm -r --filter './packages/*' build && pnpm -r --workspace-concurrency=1 --filter './apps/*' build",
"consumer:check": "node ./scripts/check-packed-consumers.mjs",
"dev:bench": "pnpm --filter @pretable/app-bench dev",
"format": "prettier --check .",
"format:write": "prettier --write .",
"lint": "pnpm -r lint",
"lint:packaging": "pnpm --filter @pretable/core lint:packaging && pnpm --filter @pretable/react lint:packaging && pnpm --filter @pretable/stream-adapter lint:packaging && pnpm --filter @pretable/ui lint:packaging",
"publish:preflight": "node ./scripts/publish-preflight.mjs",
"react:compat": "node ./scripts/check-react-compatibility.mjs",
"security:audit": "pnpm audit --audit-level low",
"seo:og": "node ./scripts/generate-og-image.mjs",
"test": "node --test scripts/__tests__/analyze-cdp.test.mjs scripts/__tests__/bench-comparator-provenance.test.mjs scripts/__tests__/bench-e2e.test.mjs scripts/__tests__/bench-matrix.test.mjs scripts/__tests__/check-bench-budgets.test.mjs scripts/__tests__/check-packed-consumers.test.mjs scripts/__tests__/check-prod-deploy.test.mjs scripts/__tests__/check-react-compatibility.test.mjs scripts/__tests__/check-type-performance.test.mjs scripts/__tests__/node-toolchain-contract.test.mjs scripts/__tests__/public-api-forgotten-exports.test.mjs scripts/__tests__/public-api-symbol-brands.test.mjs scripts/__tests__/public-package-build-contract.test.mjs scripts/__tests__/publish-preflight.test.mjs scripts/__tests__/publish-public-packages.test.mjs scripts/__tests__/security-audit-workflow-contract.test.mjs scripts/__tests__/workflow-security-policy.test.mjs scripts/__tests__/workspace-scripts-own-one-package.test.mjs && pnpm -r --filter './packages/*' build && pnpm -r --no-bail --filter './packages/*' test && pnpm -r --no-bail --workspace-concurrency=1 --filter './apps/*' test",
"typecheck": "pnpm -r --filter './packages/*' build && pnpm -r --filter './packages/*' typecheck && pnpm -r --workspace-concurrency=1 --filter './apps/*' typecheck",
"typecheck:performance": "pnpm --filter '@pretable/core...' build && node ./scripts/check-type-performance.mjs",
"typecheck:public": "pnpm --filter '@pretable/react...' build && pnpm exec tsc -p type-tests/tsconfig.json --noEmit && pnpm exec tsc -p type-tests/tsconfig.react.json --noEmit"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@changesets/cli": "^3.0.1",
"@eslint/js": "^10.0.1",
"@microsoft/api-extractor": "^7.59.0",
"@microsoft/tsdoc": "^0.16.0",
"@playwright/test": "^1.62.1",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@types/node": "^26.4.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitejs/plugin-react": "^6.1.0",
"acorn": "8.18.0",
"eslint": "^10.9.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.5",
"globals": "^17.11.0",
"jsdom": "^30.0.1",
"prettier": "^3.9.6",
"publint": "^0.3.24",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"semver": "^7.8.5",
"source-map": "0.8.0",
"tsdown": "0.22.14",
"tsx": "^4.23.11",
"typescript": "^6.0.3",
"typescript-eslint": "^8.68.0",
"vite": "^8.2.2",
"vitest": "^4.1.11",
"webpack": "5.110.2",
"webpack-cli": "7.2.3",
"yaml": "^2.9.0"
}
}