-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.19 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.19 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
{
"name": "@buttondown/cli",
"version": "1.0.9",
"description": "CLI for Buttondown to sync emails and media with a local folder",
"type": "module",
"main": "dist/index.js",
"bin": {
"cli": "dist/cli.js",
"buttondown": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "bun test src/*",
"prepare": "bun run build",
"lint": "biome check .",
"lint:fix": "biome check --fix . --unsafe",
"cli": "tsc && node dist/cli.js"
},
"keywords": [
"buttondown",
"cli",
"newsletter",
"sync"
],
"author": "",
"license": "MIT",
"dependencies": {
"conf": "^13.1.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.3.2",
"ink": "^5.2.1",
"ink-text-input": "^6.0.0",
"meow": "^13.2.0",
"react": "^18.3.1",
"yaml": "^2.6.1"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.18.3",
"@types/react": "^19.1.13",
"bun-types": "^1.2.22",
"delay": "^6.0.0",
"ink-testing-library": "^4.0.0",
"react-devtools-core": "^6.1.5",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18"
}
}