forked from round-cash/prisma-extension-soft-delete
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.21 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
{
"name": "@candoimage/prisma-extension-soft-delete",
"version": "2.1.2",
"description": "Prisma extension for soft deleting records - Prisma 7 compatible fork",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esm/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm-run-all build:cjs build:esm",
"build:cjs": "tsc -p tsconfig.build.json",
"build:esm": "tsc -p tsconfig.esm.json",
"test:unit": "prisma generate && jest --config jest.config.unit.js",
"test:e2e": "./test/scripts/run-with-postgres.sh jest --config jest.config.e2e.js --runInBand",
"test": "./test/scripts/run-with-postgres.sh jest --runInBand",
"lint": "eslint ./src --fix",
"typecheck": "npm run build:cjs -- --noEmit && npm run build:esm -- --noEmit",
"validate": "kcd-scripts validate lint,typecheck,test",
"semantic-release": "semantic-release",
"doctoc": "doctoc ."
},
"files": [
"dist"
],
"keywords": [
"prisma",
"prisma7",
"client",
"soft-delete",
"extension"
],
"author": "Olivier Wilkinson",
"contributors": [
"Round Treasury (fork)",
"Cando (Prisma 7 compatibility)"
],
"license": "Apache-2.0",
"dependencies": {
"@candoimage/prisma-extension-nested-operations": "^1.6.4"
},
"peerDependencies": {
"@prisma/client": ">=7.0.0"
},
"devDependencies": {
"@faker-js/faker": "^10.3.0",
"@prisma/adapter-pg": "7.6.0",
"@prisma/client": "7.6.0",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"doctoc": "^2.3.0",
"eslint": "^10.0.2",
"jest": "^30.2.0",
"kcd-scripts": "^17.0.0",
"npm-run-all": "^4.1.5",
"prisma": "7.6.0",
"semantic-release": "19.0.3",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/CandoImage/prisma-extension-soft-delete.git"
},
"release": {
"branches": [
"main",
{
"name": "prerelease",
"prerelease": true
},
{
"name": "next",
"prerelease": true
}
]
},
"publishConfig": {
"access": "public"
}
}