-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 967 Bytes
/
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
{
"name": "randevu",
"version": "2.0.0",
"description": "The official TypeScript implementation of the RANDEVU algorithm",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"test": "jest"
},
"keywords": [
"randevu",
"rdv",
"rdvt",
"global",
"reminder",
"algorithm",
"date",
"time",
"random",
"blake3",
"daily",
"cryptography",
"hash",
"offline",
"rendezvous",
"probabilistic",
"deterministic"
],
"author": "TypicalHog",
"license": "Unlicense OR MIT OR Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/TypicalHog/randevu-ts"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@noble/hashes": "^1.4.0"
}
}