-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.82 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
69
70
71
72
73
74
75
76
77
78
{
"name": "@hyperyai/sdk",
"version": "1.0.1",
"description": "Drop-in authentication, checkout, and error handling for apps built on Hypery",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hyperyai/hypery-sdk.git"
},
"homepage": "https://github.com/hyperyai/hypery-sdk#readme",
"bugs": {
"url": "https://github.com/hyperyai/hypery-sdk/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"src/",
"dist/",
"README.md",
"!src/**/__tests__"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "bun test src",
"prepack": "npm run build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"clsx": "^2.1.0",
"lucide-react": "^0.541.0",
"tailwind-merge": "^3.6.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^26.1.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"semantic-release": "^25.0.3",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=22"
},
"keywords": [
"hypery",
"auth",
"authentication",
"oauth",
"pkce",
"react",
"checkout",
"error-handling",
"spending-limits",
"credits"
]
}