-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.5 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.5 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
84
85
86
87
88
89
90
91
92
93
{
"name": "prisma-smart-query",
"version": "1.0.3",
"description": "A small helper for building Prisma query options with filtering, sorting, field limiting, pagination, and relations include.",
"keywords": [
"prisma",
"query",
"query-builder",
"filtering",
"sorting",
"pagination",
"typescript"
],
"license": "MIT",
"author": "8pro <mechackkobius@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/Mechack08/prisma-smart-query.git"
},
"bugs": {
"url": "https://github.com/Mechack08/prisma-smart-query/issues",
"email": "mechackkobius@gmail.com"
},
"homepage": "https://github.com/Mechack08/prisma-smart-query#readme",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c && tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"dependencies": {
"express": "^5.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/express": "^5.0.3",
"@types/supertest": "^6.0.3",
"c8": "^10.1.3",
"rollup": "^4.50.2",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^24.2.8",
"supertest": "^7.1.4",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@prisma/client": ">=5.0.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}