-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.46 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.46 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@tummycrypt/tinyland-auth-pg",
"version": "0.2.4",
"type": "module",
"packageManager": "pnpm@10.13.1",
"license": "MIT",
"description": "PostgreSQL storage adapter for @tummycrypt/tinyland-auth",
"homepage": "https://github.com/tinyland-inc/tinyland-auth-pg",
"bugs": {
"url": "https://github.com/tinyland-inc/tinyland-auth-pg/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinyland-inc/tinyland-auth-pg.git"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./bootstrap-users": {
"types": "./dist/bootstrap-users.d.ts",
"import": "./dist/bootstrap-users.js"
},
"./schema": {
"types": "./dist/schema.d.ts",
"import": "./dist/schema.js"
},
"./business-schema": {
"types": "./dist/business-schema.d.ts",
"import": "./dist/business-schema.js"
},
"./content-schema": {
"types": "./dist/content-schema.d.ts",
"import": "./dist/content-schema.js"
},
"./booking-schema": {
"types": "./dist/booking-schema.d.ts",
"import": "./dist/booking-schema.js"
},
"./giftcert-schema": {
"types": "./dist/giftcert-schema.d.ts",
"import": "./dist/giftcert-schema.js"
},
"./intake-schema": {
"types": "./dist/intake-schema.d.ts",
"import": "./dist/intake-schema.js"
}
},
"files": [
"CHANGELOG.md",
"dist",
"drizzle",
"drizzle-public",
"!dist/**/*.js.map"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:unit": "vitest run",
"test:watch": "vitest watch",
"check:package": "publint",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"prepublishOnly": "pnpm build && pnpm check:package"
},
"dependencies": {
"@neondatabase/serverless": "^0.10.4",
"drizzle-orm": "0.39.3",
"pg": "^8.20.0"
},
"peerDependencies": {
"@tummycrypt/tinyland-auth": "^0.2.0 || ^0.3.0"
},
"devDependencies": {
"@tummycrypt/tinyland-auth": "^0.3.0",
"@testcontainers/postgresql": "^11.14.0",
"@types/node": "^22.0.0",
"@types/pg": "^8.20.0",
"drizzle-kit": "^0.30.5",
"postgres": "^3.4.9",
"publint": "^0.3.18",
"testcontainers": "^11.14.0",
"typescript": "5.9.3",
"vitest": "^4.0.18"
}
}