-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.04 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.04 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
61
62
63
64
65
66
67
68
69
{
"version": "0.22.4",
"name": "@absolutejs/auth",
"description": "An authorization library for absolutejs",
"repository": {
"type": "git",
"url": "https://github.com/absolutejs/absolute-auth.git"
},
"main": "dist/index.js",
"license": "CC BY-NC 4.0",
"author": "Alex Kahn",
"scripts": {
"build": "rm -rf dist && bun build src/index.ts --outdir dist --sourcemap --target=bun --external elysia && tsc --emitDeclarationOnly --project tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,json}\"",
"dev": "bun run --watch example/server.ts",
"db:push": "drizzle-kit push",
"db:migrate": "bun run ./example/db/migrate.ts",
"db:studio": "drizzle-kit studio",
"lint": "eslint ./src ./example ./eslint.config.mjs",
"typecheck": "bun run tsc --noEmit",
"release": "bun run format && bun run build && bun publish"
},
"keywords": [
"authorization",
"authentication",
"absolutejs",
"elysia",
"oauth"
],
"types": "dist/src/index.d.ts",
"peerDependencies": {
"elysia": ">= 1.4.26"
},
"dependencies": {
"citra": "0.25.9"
},
"devDependencies": {
"@absolutejs/absolute": "0.12.3",
"@tanstack/react-query": "5.79.0",
"@elysiajs/eden": "1.2.0",
"@elysiajs/static": "1.2.0",
"@neondatabase/serverless": "1.0.0",
"@react-spring/web": "10.0.0-beta.0",
"@stylistic/eslint-plugin-ts": "4.2.0",
"@types/bun": "1.2.9",
"@types/react": "19.1.1",
"@types/react-dom": "19.1.2",
"drizzle-kit": "0.30.6",
"drizzle-orm": "0.41.0",
"elysia": "1.4.26",
"eslint": "9.26.0",
"eslint-plugin-absolute": "0.0.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-compiler": "19.1.0-rc.1",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-security": "3.0.1",
"prettier": "3.5.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "5.5.0",
"typescript": "5.8.3",
"typescript-eslint": "8.32.0"
},
"module": "dist/index.js"
}