Skip to content

Commit 160ab51

Browse files
Alexander Kharkoveyklerick
authored andcommitted
chore(json-api-nestjs): change package.json
1 parent 1f5960d commit 160ab51

File tree

2 files changed

+41
-3
lines changed

2 files changed

+41
-3
lines changed

libs/json-api-nestjs/package.json

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
{
22
"name": "json-api-nestjs",
3-
"version": "0.0.1",
4-
"type": "commonjs"
3+
"version": "0.0.0-development",
4+
"engines": {
5+
"node": ">= 16.0.0"
6+
},
7+
"type": "commonjs",
8+
"description": "JsonAPi Plugin for NestJs",
9+
"contributors": [
10+
{
11+
"email": "klerick666@gmain.com",
12+
"name": "Aleksandr Kharkovey"
13+
}
14+
],
15+
"repository": {
16+
"type": "git",
17+
"url": "https://github.com/klerick/nestjs-json-api.git"
18+
},
19+
"private": false,
20+
"license": "MIT",
21+
"files": [
22+
"src/**"
23+
],
24+
"keywords": [
25+
"nestjs",
26+
"nest",
27+
"jsonapi",
28+
"json-api",
29+
"typeorm",
30+
"CRUD"
31+
],
32+
"exports": {
33+
".": {},
34+
"./filter-operand": "./src/lib/types-common/operand.js",
35+
"./package.json": "./package.json"
36+
},
37+
"typesVersions": {
38+
"*":{
39+
"filter-operand": ["./src/lib/types-common/operand.d.ts"]
40+
}
41+
}
542
}

tsconfig.base.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"baseUrl": ".",
1717
"paths": {
1818
"database": ["libs/database/src/index.ts"],
19-
"json-api-nestjs": ["dist/libs/json-api-nestjs/src"]
19+
"json-api-nestjs": ["dist/libs/json-api-nestjs/src"],
20+
"json-api-nestjs/filter-operand": ["dist/libs/json-api-nestjs"]
2021
}
2122
},
2223
"exclude": ["node_modules", "tmp"]

0 commit comments

Comments
 (0)