-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "timecipher",
"discription": "TimeCipher is a blockchain-based time-locked messaging system that securely encrypts messages with a timestamp, ensuring they can only be decrypted after the specified time. This innovative solution combines privacy and delayed access, perfect for secure future communication.",
"version": "1.1.1",
"keywords": [
"timecipher",
"blockchain",
"time-locked",
"messaging",
"encryption",
"timestamp",
"privacy",
"delayed access",
"secure communication"
],
"author": "Tharindu N. Madhusanka",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": {
"require": "./dist/index.d.ts",
"default": "./dist/index.d.ts"
},
"default": {
"require": "./dist/index.js",
"import": "./dist/index.js"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/truethari/timecipher.git"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"build": "tsc",
"prepare": "husky",
"format": "prettier --write .",
"test": "jest"
},
"dependencies": {
"ethers": "^6.13.4"
}
}