-
Notifications
You must be signed in to change notification settings - Fork 292
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.58 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
{
"name": "@meshtastic/web",
"version": "2.7.0-0",
"description": "Meshtastic web client monorepo",
"homepage": "https://meshtastic.org",
"bugs": {
"url": "https://github.com/meshtastic/web/issues"
},
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/meshtastic/web.git"
},
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"check": "pnpm lint && pnpm format",
"check:fix": "pnpm lint:fix && pnpm format:fix",
"build:all": "pnpm run --filter '*' build",
"clean:all": "pnpm run --filter '*' clean",
"publish:packages": "pnpm run build --filter 'packages/transport-*'",
"test": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report e2e/.report",
"prepare": "husky"
},
"dependencies": {
"@bufbuild/protobuf": "^2.12.1",
"@meshtastic/protobufs": "workspace:*",
"ste-simple-events": "^3.0.11",
"tslog": "^4.9.3"
},
"devDependencies": {
"@meshtastic/core": "jsr:^2.6.6",
"@meshtastic/sdk": "workspace:*",
"@playwright/test": "^1.61.1",
"@types/node": "^25.9.3",
"husky": "^9.1.0",
"lint-staged": "^17.0.8",
"oxfmt": "^0.56.0",
"oxlint": "^1.71.0",
"tsdown": "^0.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"lint-staged": {
"*.{ts,tsx}": [
"oxlint",
"oxfmt"
]
},
"packageManager": "pnpm@11.9.0"
}