-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.79 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
{
"name": "prisma-extension-cuid2",
"version": "1.1.1",
"description": "Enables the use of CUID2 as the default ID type for Prisma models",
"repository": "https://github.com/nrdobie/prisma-extension-cuid2",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"type": "module",
"scripts": {
"build": "vite build && publint --strict",
"test": "vitest",
"ci:test": "vitest --coverage",
"ci:lint": "eslint --max-warnings 0 ./src"
},
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"keywords": [
"prisma",
"cuid",
"cuid2"
],
"author": "Nicholas Dobie <[email protected]>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^8.56.0",
"@prisma/client": "^5.10.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tanstack/config": "^0.5.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.11.20",
"@types/tmp": "^0.2.6",
"@vitest/coverage-v8": "^1.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"prisma": "^5.10.2",
"publint": "^0.2.7",
"semantic-release": "^23.0.2",
"tmp": "^0.2.1",
"typescript": "^5.3.3",
"typescript-eslint": "^7.0.2",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.3.1"
},
"peerDependencies": {
"@prisma/client": "^5.0.0"
},
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"immer": "^10.0.3",
"zod": "^3.22.4"
}
}