-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 953 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
{
"name": "onion-tools",
"version": "1.0.0",
"description": "A set of tools dedicated for onion domains manipulation.",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"test": "npx jest",
"build": "rm -rf ./src/*.js && npm run test && npx tsc"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/tgbv/onion-tools"
},
"keywords": [
"tor",
"onion",
"onion-domains",
"tools"
],
"author": "tgbv",
"license": "MIT",
"dependencies": {
"@noble/ed25519": "^1.7.3",
"base32-decode": "^1.0.0",
"base32-encode": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.8",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"files": [
"package.json",
"package-lock.json",
"README.md",
"LICENSE",
"./src/**/*.js",
"./src/**/*.d.ts"
]
}