-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.24 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
{
"name": "scryptserver",
"description": "Scrypt microservice",
"main": "dist/ScryptClient.js",
"types": "dist/ScryptClient.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/StefanoBalocco/ScryptServer.git"
},
"version": "1.2.1",
"keywords": [
"scrypt",
"microservice"
],
"author": "Stefano Balocco <stefano.balocco@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/StefanoBalocco/ScryptServer/issues"
},
"homepage": "https://github.com/StefanoBalocco/ScryptServer",
"dependencies": {
"@hono/node-server": "^1.14.3",
"hono": "^4.7.11",
"mri": "^1.2.0",
"undici": "^7.10.0",
"workerpool": "^9.3.2",
"zeptologger": "^1.0.2"
},
"devDependencies": {
"@ava/typescript": "^6.0.0",
"@types/node": "~20",
"ava": "^6.4.1",
"typescript": "~5"
},
"scripts": {
"build": "npm run build:server && npm run build:declarations && npm run build:tests",
"build:server": "tsc",
"build:declarations": "tsc -p tsconfig-declarations.json",
"build:tests": "tsc -p tests/tsconfig.json",
"run:tests": "npx ava tests/dist/*.test.js --verbose",
"run:server": "/usr/bin/env node dist/main.js"
},
"bin": "dist/main.js"
}