-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.45 KB
/
package.json
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
{
"name": "@ludovicm67/lib-filetransfer",
"version": "1.0.3",
"description": "Library to help building a file transfer application",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"start": "npm run build && node --no-warnings lib/index.js",
"docs": "typedoc src/index.ts --out docs --plugin typedoc-plugin-mermaid",
"test": "npm run build && jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ludovicm67/lib-filetransfer.git"
},
"author": {
"name": "Ludovic Muller",
"url": "https://ludovic-muller.fr/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ludovicm67/lib-filetransfer/issues"
},
"homepage": "https://github.com/ludovicm67/lib-filetransfer#readme",
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"jasmine": "^5.1.0",
"typedoc": "^0.27.2",
"typedoc-plugin-mermaid": "^1.10.0",
"typescript": "^5.3.2"
},
"dependencies": {
"base64-arraybuffer": "^1.0.2",
"cross-blob": "^3.0.2",
"p-limit": "^6.0.0",
"uuid": "^11.0.1"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"file-transfer",
"download",
"upload",
"p2p",
"webrtc",
"data",
"library",
"filetransfer"
]
}