-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.56 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.56 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
{
"name": "@sambitcreate/parsely-cli",
"version": "2.3.0",
"description": "A smart recipe scraper CLI with interactive TUI built on Ink",
"type": "module",
"main": "dist/cli.js",
"bin": {
"parsely": "dist/cli.js"
},
"scripts": {
"start": "tsx src/cli.tsx",
"dev": "tsx watch src/cli.tsx",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "tsx --test test/**/*.test.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"recipe",
"scraper",
"cli",
"tui",
"ink",
"terminal"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"public/parsely-logo.svg",
"package.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sambitcreate/parsely-cli.git"
},
"bugs": {
"url": "https://github.com/sambitcreate/parsely-cli/issues"
},
"homepage": "https://github.com/sambitcreate/parsely-cli#readme",
"dependencies": {
"cfonts": "^3.1.1",
"cheerio": "^1.0.0",
"dotenv": "^16.4.7",
"ink": "^5.1.0",
"ink-big-text": "^2.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"openai": "^4.82.0",
"puppeteer-core": "^24.38.0",
"react": "^18.3.1"
},
"devDependencies": {
"@types/ink-big-text": "^1.2.4",
"@types/react": "^18.3.28",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"packageManager": "pnpm@10.28.1+sha512.7d7dbbca9e99447b7c3bf7a73286afaaf6be99251eb9498baefa7d406892f67b879adb3a1d7e687fc4ccc1a388c7175fbaae567a26ab44d1067b54fcb0d6a316"
}