-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.23 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.23 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
{
"name": "@terbiumos/tauth-tools",
"version": "1.0.1-alpha",
"description": "Tools to easily integrate authentication via Terbium Cloud in a safe proxied way using libcurl",
"repository": {
"type": "git",
"url": "git+https://github.com/TerbiumOS/tauth-tools.git"
},
"scripts": {
"build": "rspack build --configLoader=native",
"check": "biome check . --write",
"fmt": "biome format --write ."
},
"types": "./lib/index.d.ts",
"main": "./dist/tauth.js",
"files": [
"dist",
"lib",
"src"
],
"exports": {
".": {
"import": "./dist/tauth.js",
"types": "./lib/index.d.ts"
},
"./buttons": {
"import": "./dist/buttons.js",
"types": "./lib/index.d.ts"
}
},
"keywords": [
"auth",
"terbium",
"webos",
"oath",
"cloud"
],
"author": "TerbiumOS Development",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TerbiumOS/tauth-tools/issues"
},
"homepage": "https://github.com/TerbiumOS/tauth-tools#readme",
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@rspack/cli": "^1.7.3",
"@rspack/core": "^1.7.3",
"@types/node": "latest",
"@types/react": "^19.2.9",
"react": "^19.2.3",
"typescript": "^5.9.3"
},
"dependencies": {
"better-auth": "^1.4.17",
"libcurl.js": "^0.7.4"
}
}