-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.9 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
80
{
"author": "Emmanuel Beaudry Marchand",
"description": "A collection a tiny helpers for Drizzle ORM.",
"license": "MIT",
"type": "module",
"name": "drizzle-orm-helpers",
"version": "0.7.6",
"files": [
"dist",
"package.json",
"README.md",
"documentation.md"
],
"repository": {
"type": "git",
"url": "https://github.com/iolyd/drizzle-orm-helpers.git"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./pg": {
"types": "./dist/pg/index.d.ts",
"import": "./dist/pg/index.js",
"require": "./dist/pg/index.cjs"
},
"./mysql": {
"types": "./dist/mysql/index.d.ts",
"import": "./dist/mysql/index.js",
"require": "./dist/mysql/index.cjs"
},
"./sqlite": {
"types": "./dist/sqlite/index.d.ts",
"import": "./dist/sqlite/index.js",
"require": "./dist/sqlite/index.cjs"
}
},
"devDependencies": {
"@types/geojson": "^7946.0.14",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"drizzle-orm": "^0.31.2",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-drizzle": "^0.2.3",
"prettier": "^3.3.1",
"prettier-plugin-jsdoc": "^1.3.0",
"remark-github": "^12.0.0",
"remark-toc": "^9.0.0",
"tsup": "^8.1.0",
"tsx": "^4.15.1",
"type-fest": "^4.20.0",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "4.0.3",
"typedoc-plugin-remark": "1.0.1",
"typescript": "^5.4.5",
"unified-prettier": "^2.0.1",
"zod": "^3.23.8"
},
"peerDependencies": {
"drizzle-orm": ">=0.31.2",
"zod": ">=3.23.8"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
},
"dependencies": {
"postgres-date": "^2.1.0",
"postgres-range": "^1.1.4"
},
"scripts": {
"doc": "pnpm typedoc && mv documentation/src/* documentation/ && rm -rf documentation/src",
"prepublishOnly": "pnpm tsup"
}
}