-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
46 lines (46 loc) · 1.93 KB
/
package.json
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
{
"name": "doom-but-typescript-types",
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=22",
"pnpm": ">=8"
},
"scripts": {
"browser": "pnpm --filter playground run browser",
"clean": "rm -f .tsbuildinfo && rm -rf packages/playground/evaluate/results && rm -rf target && rm -rf trace",
"preinstall": "npx only-allow pnpm",
"eval": "pnpm --filter playground --silent run eval",
"eval:spawn": "pnpm --dir packages/playground run eval:spawn",
"generate": "tsx ./packages/playground/generate.ts",
"test:conformance": "pnpm --filter conformance-tests run test",
"test:math": "pnpm --filter ts-type-math run test",
"test:create-new": "pnpm --filter conformance-tests run test:create-new",
"test:rust": "cargo test",
"test": "pnpm run test:rust && CI=true pnpm run test:math && CI=true pnpm run test:conformance && pnpm run build",
"build": "node --stack-size=8100 --max-old-space-size=8192 --max-semi-space-size=8192 ./node_modules/typescript/lib/tsc",
"build:trace": "pnpm run build --generateTrace trace",
"build:force": "MICHIGAN_TYPESCRIPT=true time tsc --incremental false --tsBuildInfoFile null --generateCpuProfile tsc-output.cpuprofile"
},
"dependencies": {
"@biomejs/biome": "^1.9.3",
"@biomejs/js-api": "^0.7.1",
"@biomejs/wasm-bundler": "^1.9.3",
"@biomejs/wasm-nodejs": "^1.9.3",
"@biomejs/wasm-web": "^1.9.3",
"@types/node": "^22.7.5",
"@typescript/vfs": "^1.6.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"type-testing": "^0.2.0",
"typescript": "5.6.3",
"vitest": "^2.1.3"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}