-
-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 896 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 896 Bytes
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
{
"name": "@vxrn/better-auth",
"version": "1.1.518",
"sideEffects": false,
"types": "./src/index.ts",
"main": "dist/cjs",
"module": "dist/esm",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./src/index.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
}
},
"files": [
"src",
"types",
"dist"
],
"scripts": {
"build": "tamagui-build --skip-types",
"watch": "tamagui-build --skip-types --watch",
"lint:fix": "../../node_modules/.bin/biome check --write --unsafe src",
"clean": "tamagui-build clean",
"clean:build": "tamagui-build clean:build"
},
"dependencies": {
"@vxrn/emitter": "workspace:*",
"better-auth": "^1.2.8",
"react": "~19.0.0"
},
"devDependencies": {
"@tamagui/build": "^1.132.17"
},
"publishConfig": {
"access": "public"
}
}