-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.97 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "gobbservice",
"type": "module",
"version": "1.0.0",
"description": "Simple Typescript framework for creating in-tree microservices which can run local, in a worker thread, or via something like NATS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup",
"prepublishOnly": "tsup"
},
"files": [
"dist",
"src"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json",
"./WorkerService": {
"import": "./dist/WorkerService.js",
"require": "./dist/WorkerService.cjs",
"types": "./dist/WorkerService.d.ts"
},
"./LocalService": {
"import": "./dist/LocalService.js",
"require": "./dist/LocalService.cjs",
"types": "./dist/LocalService.d.ts"
},
"./NatsService": {
"import": "./dist/NatsService.js",
"require": "./dist/NatsService.cjs",
"types": "./dist/NatsService.d.ts"
},
"./types": {
"import": "./dist/types.js",
"require": "./dist/types.cjs",
"types": "./dist/types.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/HamStudy/gobbservice.git"
},
"keywords": [
"typescript",
"nats",
"microservice",
"worker",
"threads"
],
"author": "Richard Bateman <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/HamStudy/gobbservice/issues"
},
"homepage": "https://github.com/HamStudy/gobbservice#readme",
"peerDependencies": {
"bson": "^4.7.0",
"nats": "~2.8.0",
"tslib": ">=2.4.0"
},
"dependencies": {
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/uuid": "^8.3.4",
"tsup": "^6.7.0",
"typescript": "^4.8.4",
"bson": "^4.7.0",
"nats": "~2.8.0",
"tslib": ">=2.4.0"
}
}