-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
33 lines (33 loc) · 892 Bytes
/
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
{
"name": "arethetypeswrong",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/arethetypeswrong/arethetypeswrong.github.io"
},
"license": "MIT",
"scripts": {
"tsc": "tsc -b",
"build": "pnpm tsc && pnpm -r build",
"format": "prettier --write \"**/*.{ts,json,css}\"",
"test": "pnpm -r test",
"check-dts": "tsc -p tsconfig.check-dts.json",
"start": "pnpm --filter @arethetypeswrong/web start",
"version": "changeset version && pnpm install --lockfile-only"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"prettier": "^3.0.3",
"typescript": "5.6.1-rc"
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}