-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 722 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 722 Bytes
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
{
"name": "@stantanasi/mongoose-jsonapi",
"version": "1.0.8",
"description": "A Mongoose plugin to support JSON:API specification",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"compile": "tsc --noEmit",
"prepare": "husky"
},
"keywords": [
"mongoose",
"jsonapi",
"plugin",
"mongoose-plugin",
"mongodb",
"api",
"typescript"
],
"repository": "https://github.com/stantanasi/mongoose-jsonapi",
"author": "stantanasi",
"license": "ISC",
"dependencies": {
"mongoose": "^8.11.0"
},
"devDependencies": {
"@types/node": "^22.5.5",
"husky": "^9.1.7",
"typescript": "^5.6.2"
}
}