forked from ynnoj/next-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.37 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
61
62
63
64
65
{
"name": "@nurodev/next-stripe",
"version": "0.1.1",
"description": "Simplified server-side Stripe workflows in Next.js",
"repository": {
"type": "git",
"url": "https://github.com/nurodev/next-stripe.git"
},
"homepage": "https://github.com/nurodev/next-stripe",
"bugs": "https://github.com/nurodev/next-stripe/issues",
"author": {
"name": "nurodev",
"email": "me@nuro.dev",
"url": "https://nuro.dev"
},
"keywords": [
"next",
"nextjs",
"next.js",
"stripe"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./client": "./dist/client.js"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": true
},
"scripts": {
"build": "rimraf dist && tsup",
"build:prod": "cross-env NODE_ENV=production npm run build",
"dev": "npm run build -- --watch",
"test": "jest --passWithNoTests"
},
"dependencies": {
"stripe": "8.132.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"cross-env": "^7.0.3",
"jest": "^27.3.1",
"next": "^12.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"tsup": "^5.5.0",
"typescript": "^4.4.4"
}
}