-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "@krakerxyz/typed-base",
"description": "Typescript based simple ORM for MongoDB",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/KrakerXyz/typed-base"
},
"version": "0.4.3",
"type": "commonjs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist/"
],
"keywords": [
"cosmosdb",
"mongodb",
"typescript",
"orm"
],
"author": {
"name": "Josh Kraker",
"email": "joshkrak@gmail.com"
},
"license": "MIT",
"scripts": {
"clean": "rimraf ./dist/",
"build": "npm run clean && tsc && tsc -p tsconfig-cjs.json",
"lint": "eslint ./src/**/*.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"mongodb": "^5"
},
"devDependencies": {
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^5.13",
"@typescript-eslint/parser": "^5.13",
"eslint": "^8.10",
"rimraf": "^5",
"typescript": "^4.2.3",
"@krakerxyz/eslint-config": "^1.0.0"
},
"sideEffects": false
}