-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.04 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.04 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
{
"private": true,
"name": "root",
"engines": {
"node": ">= 20.19"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@oss-docs/sync": "^1.1.4",
"@types/express": "^5.0.6",
"@types/node": "^25.3.3",
"@types/prettier": "^2.7.3",
"@types/react": "^18.3.28",
"chalk": "^4.1.2",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"fb-watchman": "^2.0.2",
"glob": "^13.0.6",
"gray-matter": "4.0.3",
"prettier": "^2.8.8",
"reflect-metadata": "^0.2.2",
"remark": "^13.0.0",
"remark-html": "^13.0.2",
"remark-shiki-twoslash": "^3.1.3"
},
"pnpm": {
"overrides": {
"remark-shiki-twoslash>@typescript/twoslash": "link:./packages/ts-twoslasher",
"remark-shiki-twoslash>@typescript/vfs": "link:./packages/typescript-vfs",
"shiki-twoslash>@typescript/twoslash": "link:./packages/ts-twoslasher",
"shiki-twoslash>@typescript/vfs": "link:./packages/typescript-vfs",
"@types/react": "^18.3.28",
"@types/estree": "0.0.46",
"@types/eslint": "7.29.0",
"assert": "2.0.0",
"rollup-plugin-typescript2": "0.36.0",
"typescript": "6.0.0-dev.20260213",
"tslib": "^2.6.2",
"sharp": "0.34.5",
"webpack": "^5.105.3"
},
"patchedDependencies": {
"gatsby-remark-shiki-twoslash@3.0.38": "patches/gatsby-remark-shiki-twoslash@3.0.38.patch"
},
"ignoredBuiltDependencies": [
"@parcel/watcher",
"core-js",
"core-js-pure",
"es5-ext",
"lmdb",
"msgpackr-extract",
"spawn-sync",
"unrs-resolver"
],
"onlyBuiltDependencies": [
"esbuild",
"gatsby",
"gatsby-cli",
"sharp"
]
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!intl-messageformat|intl-messageformat-parser).+\\.js$"
]
},
"scripts": {
"ci:publish": "pnpm changeset tag && pnpm publish -r",
"bootstrap": "pnpm -r run bootstrap && BOOTSTRAPPING=true pnpm -r run build",
"start": "concurrently -p \"[{name}]\" -n \"BUILD,SITE\" -c \"bgBlue.bold,bgMagenta.bold\" \"node watcher.js\" \"pnpm run --filter=typescriptlang-org start\"",
"build": "pnpm run --filter=!typescriptlang-org build",
"build-site": "pnpm run --filter=typescriptlang-org build",
"compile": "pnpm run --filter=typescriptlang-org tsc",
"update-snapshots": "pnpm run --filter=typescriptlang-org update-snapshots",
"clean": "pnpm run --filter=typescriptlang-org gatsby clean",
"clean-twoslash": "rm -rf packages/.cache/twoslash",
"test": "CI=true pnpm -r run test",
"update-test-snapshots": "CI=true pnpm run --filter=@typescript/twoslash --filter=@typescript/vfs test -u"
},
"repository": "microsoft/TypeScript-Website",
"author": "Deploy Bot <ortam@microsoft.com>",
"auto": {
"plugins": [
"npm"
],
"onlyPublishWithReleaseLabel": true
},
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017"
}