-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.92 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
{
"name": "@alexasomba/paystack-inline",
"version": "1.10.8",
"description": "A strongly-typed, Promise-based TypeScript wrapper for Paystack Popup (inline.js).",
"keywords": [
"africa",
"browser",
"checkout",
"inline",
"javascript",
"nigeria",
"payments",
"paystack",
"popup",
"tanstack-intent",
"typescript"
],
"homepage": "https://github.com/alexasomba/paystack-inline#readme",
"bugs": {
"url": "https://github.com/alexasomba/paystack-inline/issues"
},
"license": "MIT",
"author": "alexasomba",
"repository": {
"type": "git",
"url": "https://github.com/alexasomba/paystack-inline.git"
},
"files": [
"dist",
"skills",
"!skills/_artifacts"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test run",
"coverage": "vp test run --coverage",
"lint": "vp lint . --fix",
"lint:package": "publint run --strict",
"lint:skills": "intent validate",
"lint:types": "npm_config_ignore_scripts=true npm_config_cache=/tmp/paystack-openapi-npm-cache attw --profile esm-only --pack .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"clean": "rm -rf dist",
"prepack": "pnpm build",
"publish:public": "pnpm publish --no-git-checks --access public"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@tanstack/intent": "^0.0.41",
"jsdom": "^29.1.1",
"publint": "^0.3.20",
"typescript": "^5.9.3",
"vite": "npm:@voidzero-dev/vite-plus-core@^0.1.20",
"vite-plus": "^0.1.20",
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.20"
},
"engines": {
"node": ">=22.0.0"
}
}