-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 994 Bytes
/
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
{
"name": "@fixers/stripe-js",
"type": "module",
"version": "0.0.2",
"description": "Naked loading wrapper for Stripe.js ",
"author": "Luca <git@lucacicada.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wefixers/stripe-js.git"
},
"keywords": [
"stripe",
"stripe-js"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "unbuild",
"build": "unbuild",
"release": "changelogen --release",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@stripe/stripe-js": "^2.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.1.2",
"changelogen": "^0.5.5",
"eslint": "^8.54.0",
"typescript": "^5.3.2",
"unbuild": "^2.0.0"
}
}