-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.38 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
{
"name": "workspace-root",
"author": "Workleap",
"version": "0.0.0",
"description": "Logging libraries for building web applications at Workleap.",
"private": true,
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/workleap/wl-logging.git"
},
"scripts": {
"dev-web": "turbo run dev --filter=./samples/web",
"dev-docs": "retype start",
"build-pkg": "turbo run build --filter=./packages/*",
"lint": "turbo run lint --continue",
"eslint": "eslint . --max-warnings=0 --cache --cache-location node_modules/.cache/eslint",
"typecheck": "tsc",
"syncpack": "syncpack lint",
"test": "turbo run test --continue",
"changeset": "changeset",
"publish-pkg": "changeset publish",
"publish-pr-pkg": "pkg-pr-new publish ./packages/* --packageManager=pnpm --pnpm",
"clean": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf dist .turbo .rslib node_modules/.cache",
"reset": "pnpm clean && pnpm reset:modules",
"reset:modules": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf node_modules pnpm-lock.yaml",
"list-outdated-deps": "pnpm outdated -r --format list !eslint !@eslint/js",
"update-outdated-deps": "pnpm run --sequential \"/^update-outdated-deps:.*/\"",
"update-outdated-deps:update-version": "pnpm update -r --latest !eslint !@eslint/js",
"update-outdated-deps:update-peers": "syncpack fix",
"update-outdated-deps:fix-pkg-json": "eslint --fix --no-cache --no-ignore package.json **/package.json"
},
"devDependencies": {
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.30.0",
"@eslint/js": "9.39.2",
"@types/node": "25.5.0",
"@typescript-eslint/parser": "8.58.0",
"@typescript/native-preview": "7.0.0-dev.20260331.1",
"@workleap/eslint-configs": "1.1.15",
"@workleap/typescript-configs": "3.0.7",
"agent-browser": "0.23.4",
"eslint": "9.39.2",
"pkg-pr-new": "0.0.66",
"prettier": "3.8.1",
"retypeapp": "4.4.0",
"syncpack": "14.3.0",
"turbo": "2.9.2",
"typescript-eslint": "8.58.0"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.30.1"
}