-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
package.json
File metadata and controls
60 lines (60 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
{
"name": "@objectstack/plugin-auth",
"version": "4.0.4",
"license": "Apache-2.0",
"description": "Authentication & Identity Plugin for ObjectStack",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup --config ../../../tsup.config.ts",
"test": "vitest run",
"validate": "objectstack validate",
"compile": "objectstack compile",
"info": "objectstack info"
},
"dependencies": {
"@objectstack/core": "workspace:*",
"@objectstack/spec": "workspace:*",
"@objectstack/platform-objects": "workspace:*",
"better-auth": "^1.6.5"
},
"devDependencies": {
"@objectstack/cli": "workspace:*",
"@types/node": "^25.6.0",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
},
"keywords": [
"objectstack",
"plugin",
"auth",
"authentication",
"better-auth"
],
"author": "ObjectStack",
"repository": {
"type": "git",
"url": "https://github.com/objectstack-ai/framework.git",
"directory": "packages/plugins/plugin-auth"
},
"homepage": "https://objectstack.ai/docs",
"bugs": "https://github.com/objectstack-ai/framework/issues",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=18.0.0"
}
}