-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.43 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.43 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
{
"name": "@getmocha/users-service",
"version": "0.0.4",
"description": "An API client, Hono middleware, and a React provider for the Mocha Users Service",
"author": "Mocha (https://getmocha.com)",
"license": "Apache-2.0",
"type": "module",
"typesVersions": {
"*": {
"backend": [
"./dist/backend.d.ts"
],
"react": [
"./dist/react.d.ts"
],
"shared": [
"./dist/shared.d.ts"
]
}
},
"exports": {
"./backend": {
"import": "./dist/backend.js",
"types": "./dist/backend.d.ts"
},
"./react": {
"import": "./dist/react.js",
"types": "./dist/react.d.ts"
},
"./shared": {
"import": "./dist/shared.js",
"types": "./dist/shared.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"check-format": "prettier --check .",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build && npm run check-format",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mocha",
"users service",
"auth",
"authentication",
"oauth"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"hono": "^4.0.0",
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"hono": "^4.8.0",
"prettier": "^3.5.3",
"react": "^18.0.0",
"typescript": "^5.8.3"
}
}