-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "vue-stripe-js",
"version": "2.0.0",
"description": "Vue 3 components for Stripe.js",
"type": "module",
"main": "./dist/vue-stripe.js",
"exports": {
".": {
"types": "./dist/vue-stripe.d.ts",
"import": "./dist/vue-stripe.js",
"browser": "./dist/vue-stripe.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"check:types": "publint && attw --pack . --ignore-rules=cjs-resolves-to-esm",
"ci": "biome check && pnpm run build && pnpm run check:types"
},
"files": ["dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/ectoflow/vue-stripe-js.git"
},
"keywords": ["Vue", "Stripe", "Elements", "Checkout", "Payments"],
"author": "Oleksandr Bystrikov <https://github.com/softbeehive>",
"license": "MIT",
"homepage": "https://github.com/ectoflow/vue-stripe-js",
"bugs": {
"url": "https://github.com/ectoflow/vue-stripe-js/issues"
},
"dependencies": {
"@stripe/stripe-js": "^5.5.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@biomejs/biome": "1.9.4",
"@tailwindcss/vite": "4.0.0-beta.8",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/tsconfig": "0.7.0",
"publint": "^0.3.0",
"tailwindcss": "4.0.0-beta.8",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.5.0",
"vue": "^3.5.13",
"vue-tsc": "^2.2.0"
}
}