-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.16 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
87
{
"name": "@ngandu-dev/flexpay",
"version": "2.0.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"type": "commonjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup --minify",
"check:package": "publint --strict && attw --pack .",
"dev": "tsup --watch",
"format": "biome check --write .",
"lint": "biome check .",
"prepack": "bun run build",
"prepare": "husky",
"quality": "bun run lint && bun run typecheck && bun run test && bun run build && bun run check:package",
"release": "npm publish --access public",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"version": "changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngandu-dev/flexpay.git"
},
"keywords": [
"api",
"payment-gateway",
"mobile-money"
],
"author": "Bernard Ngandu <bernard@ngandu.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngandu-dev/flexpay/issues"
},
"homepage": "https://github.com/ngandu-dev/flexpay#readme",
"description": "FlexPay API TypeScript client",
"dependencies": {
"zod": "^4.5.4"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@biomejs/biome": "^2.5.12",
"@changesets/cli": "^3.0.2",
"@types/node": "^26.5.0",
"@vitest/coverage-v8": "^5.0.0",
"husky": "^9.1.7",
"publint": "^0.3.24",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^5.0.0"
},
"overrides": {
"esbuild": "0.28.1",
"js-yaml": "4.3.1",
"nanoid": "3.3.18",
"picomatch": "^4.0.7",
"postcss": "8.5.26",
"rollup": "4.62.4",
"vite": "8.2.1"
},
"engines": {
"node": ">=24"
},
"packageManager": "bun@1.3.14",
"sideEffects": false
}