-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 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
{
"name": "@code-zero/auth",
"version": "0.4.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./config": {
"import": {
"types": "./dist/config.d.mts",
"default": "./dist/config.mjs"
},
"require": {
"types": "./dist/config.d.cts",
"default": "./dist/config.cjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"clean": "tsc -b --clean",
"lint": "oxlint --config ../../tooling/oxc/packages.oxlintrc.json --type-aware --type-check src",
"lint:fix": "oxlint --fix --config ../../tooling/oxc/packages.oxlintrc.json --type-aware --type-check src",
"test": "vitest run src --passWithNoTests",
"typecheck": "tsc --project tsconfig.json --pretty false --noEmit"
},
"dependencies": {
"@better-auth/infra": "^0.4.0",
"@code-zero/database": "workspace:*",
"@octopi-ai/better-enrollment": "^0.4.0",
"better-auth": "^1.6.26",
"zod": "^4.4.3"
},
"devDependencies": {
"oxlint": "^1.44.0",
"oxlint-tsgolint": "^7.0.2001",
"tsdown": "^0.22.14",
"typescript": "^5.9.2",
"vitest": "^4.1.10"
}
}