-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 825 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 825 Bytes
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
{
"name": "example-module",
"version": "0.16.0-alpha.20",
"description": "A minimal module implementation example for Conduit",
"main": "dist/index.js",
"scripts": {
"setup": "npm ci",
"build": "sh build.sh && rimraf dist && tsc",
"postbuild": "copyfiles -u 1 src/*.proto src/**/*.json ./dist/",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/convict": "^6.1.1",
"@types/node": "^18.11.9",
"copyfiles": "^2.4.1",
"ts-proto": "^1.146.0",
"typescript": "^5.1.5"
},
"dependencies": {
"@conduitplatform/grpc-sdk": "^0.16.0-alpha.20",
"@conduitplatform/module-tools": "^0.16.0-alpha.20",
"@grpc/grpc-js": "^1.8.13",
"convict": "^6.2.3",
"dotenv": "^16.0.3",
"rimraf": "^3.0.2"
}
}