-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.57 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.57 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
{
"name": "openpull",
"version": "1.6.0",
"description": "OpenPull Node.js library for streaming logs via WebRTC",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"openpull": "./bin/cli.ts"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "npm run build && node --watch dist/index.js",
"test": "node --experimental-strip-types --test src/test.ts",
"pretest": "npm run build",
"example": "node dist/example-new-api.js",
"prepublishOnly": "npm run build",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check .",
"check:fix": "biome check --write .",
"tidy": "biome check --write . && biome lint --write ."
},
"dependencies": {
"@noble/ed25519": "^2.3.0",
"@noble/hashes": "^1.8.0",
"node-datachannel": "^0.29.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@types/node": "^24.3.0",
"@types/ws": "^8.18.1",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"bin/"
],
"keywords": [
"openpull",
"logging",
"webrtc",
"streaming",
"stdout",
"tracing"
],
"author": "OpenPull",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/openpull/openpull.git",
"directory": "openpull-node"
},
"homepage": "https://openpull.com",
"bugs": {
"url": "https://github.com/openpull/openpull/issues"
}
}