generated from wobsoriano/library-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 KB
/
package.json
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
{
"name": "retry-stripe-loader",
"version": "0.3.0",
"description": "Stripe.js loadStripe function with retries.",
"author": "Robert Soriano <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/wobsoriano/retry-stripe-loader#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wobsoriano/retry-stripe-loader.git"
},
"bugs": "https://github.com/wobsoriano/retry-stripe-loader/issues",
"keywords": [
"stripe",
"retry",
"payment",
"loader"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "bun run build-fast --dts-resolve",
"prepublishOnly": "bun run build",
"release": "bumpp && npm publish",
"start": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "biome check src",
"lint:fix": "biome check --apply src",
"format": "biome format src --write"
},
"peerDependencies": {
"@stripe/stripe-js": "*"
},
"dependencies": {
"p-retry": "^6.2.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@stripe/stripe-js": "^4.3.0",
"@types/bun": "^1.1.8",
"bumpp": "^9.5.2",
"eslint": "^9.9.1",
"tsup": "6.4.0",
"tsx": "^4.18.0",
"typescript": "^5.5.4"
}
}