-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"name": "fraci",
"version": "0.7.0",
"description": "A comprehensive library for fractional indexing, offering a strongly typed API and seamless Prisma integration.",
"author": "SegaraRai",
"license": "MIT",
"keywords": [
"fractional-indexing",
"prisma",
"prisma-extension"
],
"repository": "https://github.com/SegaraRai/fraci.git",
"type": "module",
"module": "dist/index.js",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./prisma": {
"import": "./dist/prisma.js",
"require": "./dist/prisma.cjs"
}
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"changeset-version": "changeset version",
"changeset-publish": "changeset publish",
"build": "tsup && bun run ./fix-dts.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"attw": "attw --profile node16 --pack"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@changesets/cli": "^2.27.11",
"@hono/zod-validator": "^0.4.2",
"@prisma/client": "^6.1.0",
"@types/bun": "latest",
"hono": "^4.6.15",
"mitata": "^1.0.25",
"prisma": "^6.1.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"zod": "^3.24.1"
},
"peerDependencies": {
"@prisma/client": "^5.0.0 || ^6.0.0"
},
"peerDependenciesMeta": {
"@prisma/client": {
"optional": true
}
}
}