-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.52 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.52 KB
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
{
"name": "@winterfx/pt-cli",
"version": "1.0.2",
"description": "CLI tool for audio transcription with AI summary",
"type": "commonjs",
"bin": {
"pt": "bin/pt.js"
},
"main": "./dist/index.js",
"files": [
"bin",
"dist",
"README.md"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "esbuild src/index.ts --bundle --platform=node --target=node20 --outfile=dist/index.js",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run typecheck",
"release": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^14.0.2",
"dotenv": "^16.4.7",
"openai": "^4.77.4",
"ora": "^5.4.1",
"p-limit": "^7.2.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/uuid": "^10.0.0",
"esbuild": "^0.24.2",
"tsx": "^4.21.0",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"podcast",
"transcription",
"whisper",
"openai",
"cli",
"audio",
"speech-to-text",
"srt",
"subtitle"
],
"author": "winterfx",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/winterfx/pt-cli.git"
},
"homepage": "https://github.com/winterfx/pt-cli#readme",
"bugs": {
"url": "https://github.com/winterfx/pt-cli/issues"
},
"publishConfig": {
"access": "public"
}
}