-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"author": "Florian Imdahl <[email protected]>",
"dependencies": {
"jszip": "3.10.1",
"protobufjs": "7.4.0"
},
"description": "Temporary Exposure Keys (TEK) library",
"devDependencies": {
"protobufjs-cli": "1.1.3",
"rimraf": "6.0.1",
"typescript": "5.7.3"
},
"engines": {
"node": ">= 18.0"
},
"files": [
"dist",
"proto/export.js",
"proto/export.d.ts"
],
"keywords": [
"tek",
"temporary",
"exposure",
"keys",
"google",
"apple",
"corona",
"covid",
"covid19",
"covid-19",
"typescript"
],
"license": "GPL-3.0",
"name": "exposure-keys",
"repository": "https://github.com/ffflorian/node-packages/tree/main/packages/exposure-keys",
"scripts": {
"build": "yarn build:proto && yarn build:ts",
"build:proto": "pbjs --t static-module -w commonjs -o proto/export.js proto/export.proto && pbts --out proto/export.d.ts --no-comments proto/export.js",
"build:ts": "tsc",
"clean": "rimraf dist",
"dist": "yarn clean && yarn build",
"start": "node --loader ts-node/esm src/cli.ts -d"
},
"type": "module",
"version": "1.10.2"
}