-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.78 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
{
"name": "@diva.exchange/i2p-sam",
"version": "5.5.2",
"description": "I2P SAM: peer-to-peer communication between applications over I2P",
"files": [
"lib",
"package.json",
"README.md",
"LICENSE"
],
"funding": {
"type": "individual",
"url": "https://www.diva.exchange/en/join-in/"
},
"type": "module",
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js"
},
"keywords": [
"i2p",
"sam",
"p2p",
"peer-to-peer",
"privacy",
"diva.exchange"
],
"author": "DIVA.EXCHANGE Association <contact@diva.exchange> (https://diva.exchange)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/diva-exchange/i2p-sam.git"
},
"bugs": {
"url": "https://github.com/diva-exchange/i2p-sam/issues"
},
"scripts": {
"build": "npm run clean && npm i && tsc && npm run lint",
"clean": "rm -rf lib/*",
"clean-test": "rm -rf test/compiled-lib/*",
"clean-benchmark": "rm -rf test/compiled-benchmark/*",
"lint": "prettier -w \"**/*.ts\" && eslint src/",
"test": "npm run build && npm run clean-test && tsc -p ./test/tsconfig.json && c8 mocha",
"benchmark": "npm run clean-benchmark && tsc -p ./test/benchmark/tsconfig.json",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"nanoid": "^5.1.6",
"rfc4648": "^1.5.4"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@testdeck/mocha": "^0.3.3",
"@tsconfig/node16": "^16.1.6",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.9.2",
"c8": "^10.1.3",
"chai": "^6.2.0",
"eslint": "^9.38.0",
"mocha": "^11.7.4",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
}
}