-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.86 KB
/
package.json
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
70
71
72
73
74
75
76
77
78
79
{
"name": "@drivly/authjs-clickhouse",
"version": "0.0.2",
"description": "Clickhouse adapter for next-auth.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"author": "Chris Risner @Drivly",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/drivly/authjs-clickhouse.git"
},
"bugs": {
"url": "https://github.com/drivly/authjs-clickhouse/issues"
},
"homepage": "https://github.com/drivly/authjs-clickhouse#readme",
"engines": {
"node": ">=18.17"
},
"keywords": [
"next-auth",
"@auth",
"Auth.js",
"next.js",
"oauth",
"clickhouse"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"scope": "@drivly"
},
"scripts": {
"test": "./test/test.sh",
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm clean && pnpm build",
"release": "pnpm build && changeset publish",
"changeset": "changeset"
},
"peerDependencies": {
"@clickhouse/client-web": "^1.10.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@clickhouse/client-web": "^1.10.0",
"@preact/preset-vite": "^2.8.1",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"dotenv": "^10.0.0",
"tsup": "^8.3.5",
"typescript": "5.5.4",
"unplugin-swc": "^1.5.1",
"vite": "^6.0.7",
"vitest": "2.1.8"
},
"dependencies": {
"@auth/core": "^0.37.4",
"@drivly/authjs-clickhouse": "link:"
}
}