-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@matfire/drizzle-sluggable",
"version": "1.1.1",
"description": "Generate unique scoped slugs for Drizzle ORM inserts and updates",
"keywords": [
"drizzle",
"drizzle-orm",
"mysql",
"postgres",
"slug",
"slugs",
"sqlite",
"typescript"
],
"homepage": "https://github.com/matfire/drizzle-sluggable#readme",
"bugs": {
"url": "https://github.com/matfire/drizzle-sluggable/issues"
},
"license": "MIT",
"author": "Matteo Gassend",
"repository": {
"type": "git",
"url": "git+https://github.com/matfire/drizzle-sluggable.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"./mysql": {
"import": "./dist/mysql/index.mjs",
"types": "./dist/mysql/index.d.mts"
},
"./pg": {
"import": "./dist/pg/index.mjs",
"types": "./dist/pg/index.d.mts"
},
"./sqlite": {
"import": "./dist/sqlite/index.mjs",
"types": "./dist/sqlite/index.d.mts"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --write",
"format:check": "oxfmt --check",
"typecheck": "tsc --noEmit",
"build": "tsdown",
"check": "bun run lint && bun run format:check && bun run typecheck && bun run build && bun run test",
"prepare": "if command -v lefthook >/dev/null 2>&1; then lefthook install --reset-hooks-path; fi"
},
"devDependencies": {
"@libsql/client": "^0.17.3",
"@types/pg": "^8.20.0",
"lefthook": "^2.1.9",
"mysql2": "^3.22.4",
"oxfmt": "^0.40.0",
"oxlint": "^1.67.0",
"pg": "^8.21.0",
"testcontainers": "^11.14.0",
"tsdown": "^0.21.10",
"typescript": "^5.9.3",
"vitest": "^4.1.7"
},
"peerDependencies": {
"drizzle-orm": "^0.44.7"
},
"packageManager": "bun@1.3.10"
}