-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.96 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
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
{
"name": "psdtools",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"prepare": "husky",
"format": "prettier . --write --cache --cache-location='node_modules/.cache/.prettiercache' --log-level=warn",
"format:check": "prettier . --check --cache --cache-location='node_modules/.cache/.prettiercache'",
"knip": "knip",
"manypkg": "manypkg check",
"typesync": "typesync",
"typesync:check": "typesync --dry=fail",
"check-deduped-deps": "pnpm dedupe --check --prefer-offline",
"merge-checks": "turbo run typecheck knip lint format:check manypkg typesync:check test"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@manypkg/cli": "^0.23.0",
"husky": "^9.1.7",
"knip": "^5.44.1",
"prettier": "3.5.1",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "^2.4.4",
"typesync": "^0.14.1"
},
"devEngines": {
"runtime": [
{
"name": "node",
"version": ">= 23.0.0"
}
],
"packageManager": [
{
"name": "pnpm",
"version": "^10.4.0"
}
]
},
"packageManager": "[email protected]+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
}
},
"onlyBuiltDependencies": [
"esbuild",
"sharp"
],
"ignoredBuiltDependencies": [
"eslint-config-sheriff",
"mws",
"svelte-preprocess"
],
"overrides": {
"eslint-plugin-unicorn": "^56.0.1",
"vitest>jsdom": "-"
},
"patchedDependencies": {
"eslint-config-sheriff": "patches/eslint-config-sheriff.patch"
}
},
"manypkg": {
"workspaceProtocol": "require"
}
}