forked from dmotz/trystero
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.46 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "trystero-monorepo",
"version": "0.23.0",
"private": true,
"keywords": [
"bittorrent",
"chat",
"decentralized",
"firebase",
"ipfs",
"matchmaking",
"mqtt",
"nostr",
"p2p",
"pairing",
"peer to peer",
"react",
"realtime",
"serverless",
"signaling",
"supabase",
"torrent",
"webrtc",
"webtorrent"
],
"author": {
"name": "Dan Motzenbecker",
"email": "dan@oxism.com",
"url": "https://oxism.com"
},
"type": "module",
"scripts": {
"build": "tsdown",
"build:test": "TEST_BUILD=1 tsdown",
"changeset": "changeset",
"changeset:version": "changeset version",
"copy-readmes-for-publish": "jiti scripts/copy-readmes.ts",
"changeset:publish": "pnpm copy-readmes-for-publish && changeset publish",
"test": "pnpm run build:test && playwright test ./test",
"test:node": "pnpm run build && node --import jiti/register --test 'test/node/*.spec.ts'",
"test:bun": "pnpm run build && bun test test/node/*.spec.ts",
"test:ice": "pnpm run build && jiti scripts/test-ice.ts",
"test:proxy": "PROXY=$(jiti scripts/find-proxy.ts) pnpm test",
"test:relays": "pnpm run build && jiti scripts/test-relays.ts",
"lint": "oxlint --type-aware --type-check .",
"lint:fix": "oxlint --type-aware --type-check . --fix",
"format": "oxfmt --check .",
"format:write": "oxfmt .",
"find-proxy": "jiti scripts/find-proxy.ts",
"get-bundle-sizes": "node scripts/get-bundle-sizes.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@trystero-p2p/core": "workspace:*",
"@trystero-p2p/firebase": "workspace:*",
"@trystero-p2p/ipfs": "workspace:*",
"@trystero-p2p/mqtt": "workspace:*",
"@trystero-p2p/nostr": "workspace:*",
"@trystero-p2p/supabase": "workspace:*",
"@trystero-p2p/torrent": "workspace:*",
"trystero": "workspace:*"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@changesets/cli": "^2.30.0",
"@playwright/test": "^1.59.1",
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1",
"chalk": "^5.6.2",
"jiti": "^2.6.1",
"mqtt": "^5.15.1",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"oxlint-tsgolint": "^0.20.0",
"playwright": "^1.59.1",
"publint": "^0.3.18",
"serve": "^14.2.6",
"source-map": "^0.7.6",
"tsdown": "^0.21.8",
"typescript": "^6.0.2",
"werift": "^0.22.9",
"ws": "^8.20.0"
},
"packageManager": "pnpm@10.4.0"
}