-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 3.2 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 3.2 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
61
62
63
64
65
66
{
"name": "workspace-root",
"author": "Workleap",
"version": "0.0.0",
"description": "Telemetry 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-telemetry.git"
},
"scripts": {
"dev-all-platforms": "turbo run dev --filter=./samples/all-platforms/**",
"dev-honeycomb-api-key": "turbo run dev --filter=./samples/honeycomb/api-key/**",
"dev-honeycomb-proxy": "turbo run dev --filter=./samples/honeycomb/proxy/**",
"dev-docs": "retype start",
"build-pkg": "turbo run build",
"build-all-platforms": "turbo run build --filter=./samples/all-platforms/**",
"build-honeycomb-api-key": "turbo run build --filter=./samples/honeycomb/api-key/**",
"build-honeycomb-proxy": "turbo run build --filter=./samples/honeycomb/proxy/**",
"serve-all-platforms": "turbo run serve-build --filter=./samples/all-platforms/**",
"serve-honeycomb-api-key": "turbo run serve-build --filter=./samples/honeycomb/api-key/**",
"serve-honeycomb-proxy": "turbo run serve-build --filter=./samples/honeycomb/proxy/**",
"lint": "turbo run lint --continue",
"eslint": "eslint . --max-warnings=0 --cache --cache-location node_modules/.cache/eslint",
"typecheck": "tsgo",
"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 !logrocket-fuzzy-search-sanitizer",
"update-outdated-deps": "pnpm run --sequential \"/^update-outdated-deps:.*/\"",
"update-outdated-deps:update-version": "pnpm update -r --latest !eslint !@eslint/js !logrocket-fuzzy-search-sanitizer",
"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.4.0",
"@typescript-eslint/parser": "8.57.0",
"@typescript/native-preview": "7.0.0-dev.20260310.1",
"@workleap/eslint-configs": "1.1.14",
"@workleap/typescript-configs": "3.0.7",
"agent-browser": "0.15.2",
"eslint": "9.39.2",
"pkg-pr-new": "0.0.65",
"prettier": "3.8.1",
"retypeapp": "4.1.0",
"syncpack": "14.2.0",
"turbo": "2.8.15",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.30.1"
}