-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.12 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
{
"name": "@persontric/adapter-drizzle",
"version": "0.0.0",
"description": "Drizzle ORM adapter for Persontric",
"keywords": [
"persontric",
"auth",
"authentication",
"adapter",
"drizzle",
"drizzle-orm"
],
"repository": {
"type": "git",
"url": "https://github.com/persontric/adapter-drizzle"
},
"author": "Brian Takita",
"license": "Apache-2.0",
"types": "index.ts",
"type": "module",
"exports": {
".": "./index.ts",
"./package.json": "./package.json"
},
"files": [
"*.md",
"*.js",
"*.json",
"*.ts",
"driver"
],
"scripts": {
"build": "shx rm -rf ./dist/* && tsc",
"auri.build": "pnpm build",
"test.mysql": "tsx test.mysql/index.ts",
"test.postgresql": "tsx test.postgresql/index.ts",
"test.sqlite": "tsx test.sqlite/index.ts"
},
"devDependencies": {
"@persontric/adapter-test": "workspace:*",
"@types/better-sqlite3": "^7.6.11",
"@types/pg": "^8.11.6",
"better-sqlite3": "^11.1.2",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.32.0",
"persontric": "workspace:*",
"mysql2": "^3.10.2",
"pg": "^8.12.0",
"tsx": "^4.16.2"
},
"peerDependencies": {
"persontric": "^0.0.0"
}
}