-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
128 lines (128 loc) · 4.08 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "podcast-maker",
"version": "2.6.9",
"description": "Podcast Maker CLI",
"author": "Felippe Chemello @FelippeChemello",
"bin": {
"podcast-maker": "./bin/run"
},
"homepage": "https://github.com/FelippeChemello/podcast-maker",
"license": "MIT",
"main": "dist/src/index.js",
"repository": "FelippeChemello/podcast-maker",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"README.md"
],
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "pnpm build && oclif manifest && oclif readme",
"version": "oclif readme && git add README.md",
"postbuild": "copyfiles -u 1 assets/**/* dist/assets",
"dev": "./bin/dev"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@google/generative-ai": "^0.17.1",
"@oclif/core": "^1",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.0.1",
"@remotion/bundler": "4.0.251",
"@remotion/cli": "4.0.251",
"@remotion/eslint-config": "4.0.251",
"@remotion/media-utils": "4.0.251",
"@remotion/renderer": "4.0.251",
"audioconcat": "^0.1.4",
"axios": "^1.6.2",
"commander": "^11.1.0",
"date-fns": "^3.0.1",
"dotenv": "^16.3.1",
"google-auth-library": "^9.4.1",
"googleapis": "^129.0.0",
"googleapis-common": "^7.0.1",
"http": "0.0.1-security",
"microsoft-cognitiveservices-speech-sdk": "^1.34.0",
"node-html-parser": "^6.1.11",
"puppeteer": "^21.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"remotion": "4.0.251",
"rss-parser": "^3.13.0",
"shelljs": "^0.8.5",
"string-width": "^7.0.0",
"styled-components": "^6.1.2",
"tsx": "^4.7.0",
"util": "^0.12.5"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/node": "^7.22.19",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/shelljs": "^0.8.15",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-oclif": "^5.0.0",
"eslint-config-oclif-typescript": "^3.0.29",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.0",
"oclif": "^4.1.0",
"prettier": "^3.1.1",
"shx": "^0.3.4",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"oclif": {
"bin": "podcast-maker",
"dirname": "podcast-maker",
"commands": "./dist/src/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"hooks": {
"init": [
"./dist/src/hooks/init/loadSecrets.js",
"./dist/src/hooks/init/createTmpSymLink.js"
],
"prerun": [
"./dist/src/hooks/prerun/copyLastContentToPublic.js"
]
}
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/FelippeChemello/podcast-maker/issues",
"keywords": [
"podcast",
"video-maker",
"video maker",
"video creator",
"video editor",
"clip maker",
"cli"
],
"types": "src/types.d.ts"
}