This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.7 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@fonoster/rox",
"version": "0.3.7",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"run": "./bin/run",
"rox": "./bin/run"
},
"scripts": {
"build": "tsc --build ./tsconfig.json",
"start": ".scripts/start_voice.sh",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "npm install && rimraf lib && tsc -b && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"lint": "eslint src --ext .ts --fix",
"format": "prettier --write src",
"prepare": "husky install"
},
"dependencies": {
"@fonoster/apps": "^0.3.22",
"@fonoster/googleasr": "^0.3.22",
"@fonoster/googletts": "^0.3.22",
"@fonoster/logger": "^0.3.22",
"@fonoster/secrets": "^0.3.22",
"@fonoster/voice": "^0.3.22",
"@google-cloud/dialogflow": "^4.3.1",
"@google-cloud/dialogflow-cx": "^2.13.0",
"@google-cloud/opentelemetry-cloud-trace-exporter": "^2.0.0",
"@oclif/command": "^1.8.12",
"@oclif/config": "^1.8.2",
"@oclif/errors": "^1.3.4",
"@oclif/plugin-help": "^3",
"@opentelemetry/core": "^1.11.0",
"@opentelemetry/exporter-jaeger": "^1.11.0",
"@opentelemetry/exporter-prometheus": "^0.37.0",
"@opentelemetry/exporter-zipkin": "^1.11.0",
"@opentelemetry/sdk-metrics": "^1.11.0",
"@opentelemetry/semantic-conventions": "^1.11.0",
"cli-ux": "^5.5.1",
"date-fns": "^2.29.3",
"deepmerge": "^4.2.2",
"dotenv": "^10.0.0",
"nanoid": "^3.1.25",
"ngrok": "^4.2.2",
"node-cron": "^3.0.2",
"node-fetch": "^2.6.6",
"pb-util": "^1.0.2",
"tslib": "^1",
"uuid": "^8.3.2",
"ws": "^8.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^16.11.10",
"@types/uuid": "^8.3.4",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"chai": "^4",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^8.0.3",
"mocha": "^9.2.2",
"nyc": "^14",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^4.4.2"
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"oclif": {
"bin": "rox"
}
}