-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.22 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.22 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
{
"name": "@funnelenvy/buffer-cli",
"version": "0.1.0",
"description": "Command-line interface for the Buffer social media management API",
"type": "module",
"bin": {
"buffer": "dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"files": [
"dist"
],
"keywords": [
"cli",
"marketing",
"buffer",
"social-media",
"scheduling"
],
"author": "FunnelEnvy",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.4",
"commander": "^12.1.0",
"csv-stringify": "^6.5.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^20.14.0",
"eslint": "^9.39.3",
"nock": "^14.0.0",
"tsup": "^8.5.1",
"typescript": "^5.4.0",
"typescript-eslint": "^8.56.1",
"vitest": "^1.6.1"
},
"overrides": {
"ajv": ">=6.14.0",
"esbuild": ">=0.25.0",
"minimatch": ">=9.0.6",
"rollup": ">=4.59.0"
},
"engines": {
"node": ">=20.0.0"
}
}