-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.71 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
{
"name": "@stefanobalocco/scryptserver",
"description": "Scrypt microservice",
"main": "dist/ScryptClient.js",
"types": "dist/ScryptClient.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/ScryptClient.d.ts",
"import": "./dist/ScryptClient.js"
}
},
"files": [
"dist/DefaultConfig.d.ts",
"dist/DefaultConfig.js",
"dist/ScryptClient.d.ts",
"dist/ScryptClient.js",
"dist/ScryptServer.d.ts",
"dist/ScryptServer.js",
"dist/Worker.js",
"dist/main.js"
],
"repository": {
"type": "git",
"url": "https://github.com/StefanoBalocco/ScryptServer.git"
},
"version": "2.0.0",
"engines": {
"node": "^22.20.0 || ^24.12.0 || >=26.0.0"
},
"keywords": [
"scrypt",
"microservice"
],
"author": "Stefano Balocco <stefano.balocco@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/StefanoBalocco/ScryptServer/issues"
},
"homepage": "https://github.com/StefanoBalocco/ScryptServer",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@hono/node-server": "^2.1.0",
"@stefanobalocco/zeptologger": "^2",
"hono": "^4",
"mri": "^1",
"undici": "^8",
"workerpool": "^10"
},
"devDependencies": {
"@stefanobalocco/tsbuild": "^1",
"@types/node": "^24",
"ava": "^8",
"c8": "^12"
},
"scripts": {
"build": "tsBuild all",
"build:library": "tsBuild library",
"build:tests": "tsBuild tests",
"tests": "c8 --include=src --include=dist --exclude-after-remap --per-file --reporter=text --reporter=lcov ava tests/dist/*.test.js --verbose --serial",
"start": "/usr/bin/env node dist/main.js"
},
"bin": {
"scryptserver": "./dist/main.js"
}
}