-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.98 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.98 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "memberstack-cli",
"version": "1.3.0",
"description": "Manage your Memberstack account with a simple, yet powerful CLI.",
"keywords": [
"memberstack",
"cli",
"command-line",
"tool",
"members",
"plans",
"subscriptions",
"automation",
"webflow"
],
"license": "MIT",
"author": {
"name": "Ben Sabic",
"url": "https://bensabic.dev"
},
"homepage": "https://github.com/Flash-Brew-Digital/memberstack-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/Flash-Brew-Digital/memberstack-cli.git"
},
"bugs": {
"url": "https://github.com/Flash-Brew-Digital/memberstack-cli/issues"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"memberstack": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.29.3",
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"check": "ultracite check",
"fix": "ultracite fix",
"bump-deps": "npx npm-check-updates -u -p pnpm && pnpm install",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"open": "^11.0.0",
"papaparse": "^5.5.3",
"picocolors": "^1.1.1",
"yocto-spinner": "^1.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.2",
"@types/node": "^25.2.3",
"@types/papaparse": "^5.5.2",
"@vitest/coverage-v8": "^4.0.18",
"lint-staged": "^16.2.7",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"ultracite": "7.2.3",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"pnpm dlx ultracite fix"
]
}
}