-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 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
{
"name": "@rejected-media/podcast-framework-cli",
"version": "0.1.20",
"description": "CLI tool for creating and managing podcast framework projects",
"author": "Rex Kirshner",
"license": "MIT",
"type": "module",
"bin": {
"podcast-framework": "bin/cli.js"
},
"files": [
"bin",
"dist",
"src"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup && tsc --emitDeclarationOnly --outDir dist",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@sanity/client": "^6.0.0",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"inquirer": "^9.3.8",
"ora": "^8.2.0",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.0",
"@types/node": "^20.10.0",
"tsup": "^8.5.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"keywords": [
"podcast",
"cli",
"scaffolding",
"framework",
"generator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rejected-media/podcast-framework.git",
"directory": "packages/cli"
}
}