@chatman-media/storage 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +60 -0
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@chatman-media/storage",
3
+ "version": "0.0.0",
4
+ "description": "PostgreSQL storage adapters for @chatman-media/sales — Drizzle ORM implementations of all engine interfaces.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "scripts": {
21
+ "build": "bun build ./src/index.ts --outdir ./dist --target node --format esm && tsc -p tsconfig.build.json",
22
+ "typecheck": "tsc --noEmit",
23
+ "check": "biome check ./src",
24
+ "format": "biome format --write ./src",
25
+ "test": "bun test",
26
+ "db:generate": "drizzle-kit generate",
27
+ "db:migrate": "drizzle-kit migrate"
28
+ },
29
+ "keywords": [
30
+ "chatman",
31
+ "sales",
32
+ "drizzle",
33
+ "postgresql",
34
+ "storage"
35
+ ],
36
+ "author": "Alexander Kireev",
37
+ "license": "MIT",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "https://github.com/chatman-media/storage.git"
41
+ },
42
+ "homepage": "https://github.com/chatman-media/storage#readme",
43
+ "bugs": {
44
+ "url": "https://github.com/chatman-media/storage/issues"
45
+ },
46
+ "peerDependencies": {
47
+ "@chatman-media/sales": ">=0.1.0",
48
+ "drizzle-orm": ">=0.36.0",
49
+ "postgres": ">=3.0.0"
50
+ },
51
+ "devDependencies": {
52
+ "@biomejs/biome": "^2.4.14",
53
+ "@chatman-media/sales": "^0.1.0",
54
+ "@types/bun": "1.3.14",
55
+ "drizzle-kit": "^0.30.0",
56
+ "drizzle-orm": "^0.36.0",
57
+ "postgres": "^3.4.5",
58
+ "typescript": "^6.0.3"
59
+ }
60
+ }