-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
33 lines (33 loc) · 897 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": "publint-monorepo",
"private": true,
"type": "module",
"author": "Bjorn Lu",
"license": "MIT",
"scripts": {
"lint": "prettier \"**/*.{js,ts,css,md,svelte,html}\" --check",
"format": "prettier \"**/*.{js,ts,css,md,svelte,html}\" --write",
"typecheck": "tsc -p packages/publint && tsc -p site && tsc -p analysis",
"test": "pnpm --dir packages/publint test"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@types/node": "^22.10.2",
"@types/pnpapi": "^0.0.5",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"svelte": "^5.15.0",
"typescript": "^5.7.2"
},
"pnpm": {
"overrides": {
"prettier": "$prettier",
"unconfig": "npm:@bluwy/unconfig@^0.6.1"
}
}
}