-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "@objectos/auth",
"version": "0.1.0",
"type": "module",
"license": "AGPL-3.0",
"description": "Better-Auth authentication plugin for ObjectOS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --clean && tsc --emitDeclarationOnly --declaration",
"test": "jest --forceExit --passWithNoTests",
"test:coverage": "jest --coverage --forceExit --passWithNoTests",
"test:integration": "vitest run",
"lint": "eslint src/",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@objectstack/runtime": "^3.0.9",
"@objectstack/spec": "3.0.9",
"better-auth": "^1.4.18",
"better-sqlite3": "^12.6.2",
"mongodb": "^7.1.0",
"pg": "^8.11.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.0",
"@types/pg": "^8.11.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@objectstack/objectql": "^3.0.6"
}
}