-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.47 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.47 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
{
"name": "sumit-react",
"version": "0.2.0",
"description": "React components and Next.js route helpers for SUMIT (formerly OfficeGuy) payments.",
"license": "MIT",
"type": "module",
"sideEffects": false,
"exports": {
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js"
},
"./next": {
"types": "./dist/next/index.d.ts",
"import": "./dist/next/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Digitizers/sumit-react.git"
},
"bugs": {
"url": "https://github.com/Digitizers/sumit-react/issues"
},
"homepage": "https://github.com/Digitizers/sumit-react#readme",
"keywords": [
"sumit",
"officeguy",
"upay",
"payments",
"react",
"nextjs",
"next",
"checkout",
"billing",
"recurring",
"typescript"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"sumit-api": ">=0.2.0",
"react": ">=18.0.0"
},
"devDependencies": {
"sumit-api": "file:../sumit-api",
"@testing-library/react": "^16.1.0",
"@types/node": "^20.19.35",
"@types/react": "^19.0.0",
"happy-dom": "^15.11.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5",
"vitest": "^4.0.18"
},
"publishConfig": {
"access": "public"
}
}