-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "repository-dispatch",
"version": "0.0.0",
"description": "Vercel repository-dispatch monorepo",
"bugs": {
"url": "https://github.com/vercel/repository-dispatch/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/vercel/repository-dispatch"
},
"license": "MIT",
"scripts": {
"changeset": "changeset",
"checks": "turbo run lint test typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md,json,jsonc}\"",
"lint": "turbo lint",
"release": "pnpm changeset publish",
"test": "turbo test",
"typecheck": "turbo typecheck",
"version-packages": "changeset version"
},
"lint-staged": {
"*": [
"prettier --write \"**/*.{ts,tsx,md,json,jsonc}\""
]
},
"prettier": "@vercel/style-guide/prettier",
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@vercel/style-guide": "^6.0.0",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"syncpack": "^13.0.1",
"turbo": "2.4.3",
"typescript": "5.7.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "20.x",
"pnpm": "9.4.0"
}
}