-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.36 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
{
"name": "@deepgram/cli",
"version": "0.4.0-beta.0",
"description": "The Deepgram CLI",
"author": "Luke Oliff @lukeocodes",
"bin": {
"deepgram": "./bin/run",
"dgctl": "./bin/run"
},
"homepage": "https://github.com/lukeocodes/deepgram-cli",
"license": "ISC",
"main": "dist/index.js",
"repository": "[email protected]:lukeocodes/deepgram-cli.git",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"oclif": {
"bin": "deepgram",
"dirname": "deepgram",
"commands": "./dist/commands",
"helpClass": "./dist/help",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found"
],
"topicSeparator": " "
},
"scripts": {
"prebuild": "npm run starters",
"build": "shx rm -rf dist && tsc -b",
"lint": "prettier --write \"{src,test}/**/*.ts\"",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"readme": "oclif readme && git add README.md",
"version": "oclif readme && git add README.md",
"starters": "node ./bin/starters.js"
},
"engines": {
"node": ">=14.0.0"
},
"bugs": "https://github.com/lukeocodes/deepgram-cli/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts",
"dependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.6.7",
"@deepgram/sdk": "^3.0.0-alpha.10",
"@inquirer/password": "^1.1.2",
"@inquirer/prompts": "^2.1.1",
"@oclif/core": "^2.15.0",
"@oclif/plugin-help": "^5.2.20",
"@oclif/plugin-not-found": "^2.4.3",
"@oclif/test": "^2.5.6",
"@octokit/rest": "^20.0.1",
"@types/mocha": "^10.0.1",
"@types/mute-stream": "^0.0.1",
"@types/node": "^20.3.1",
"@types/rc": "^1.2.1",
"@types/wordwrap": "^1.0.1",
"chalk": "^5.2.0",
"commitlint": "^18.0.0",
"husky": "^4.3.8",
"mocha": "^10.2.0",
"oclif": "^3.17.2",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"rc": "^1.2.8",
"shx": "^0.3.4",
"toml": "^3.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"wordwrap": "^1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}