-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.92 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.92 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
{
"name": "wolfcola-devtools",
"version": "0.0.0",
"private": true,
"description": "WolfCola DevTools — OIDC diagnostics, tree-shaking analysis, and developer tools",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryanbas21/devtools.git"
},
"type": "module",
"engines": {
"node": "^20 || ^22 || ^24",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.21.0",
"scripts": {
"build": "pnpm -r run build",
"lint": "eslint .",
"test": "vitest run",
"typecheck": "tsc --build",
"changeset": "changeset",
"version": "changeset version && pnpm --filter @wolfcola/changeset-sync-manifest build && node packages/changeset-sync-manifest/dist/bin.js packages/devtools-extension && prettier --write '**/package.json' pnpm-workspace.yaml",
"release": "pnpm build && changeset publish",
"syncpack:lint": "syncpack lint",
"syncpack:fix": "syncpack fix-mismatches",
"prepare": "test \"$CI\" = 'true' || (lefthook install && effect-language-service patch typescript)"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.27.9",
"@effect/language-service": "^0.85.1",
"@eslint/eslintrc": "^3.0.0",
"@eslint/js": "~9.39.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"jsdom": "^26.1.0",
"lefthook": "^2.1.6",
"prettier": "^3.2.5",
"syncpack": "^15.1.2",
"typescript": "5.8.3",
"vite": "catalog:vite",
"@wolfcola/changeset-sync-manifest": "workspace:*",
"vitest": "catalog:vitest"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lamdera"
],
"patchedDependencies": {
"elm-pages@3.5.1": "patches/elm-pages@3.5.1.patch"
}
}
}