-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
98 lines (98 loc) · 2.35 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
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
94
95
96
97
98
{
"name": "ravendb",
"version": "6.0.0",
"description": "RavenDB client for Node.js",
"files": [
"dist"
],
"type": "module",
"homepage": "https://ravendb.net",
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"scripts": {
"test": "mocha \"test/**/*.ts\"",
"prepare": "tshy",
"watch": "tsc --watch",
"lint": "eslint {src,test}/**/*.ts",
"check-exports": "node ./scripts/reportMissingTopLevelExports.js",
"check-imports": "node scripts/clearGlobalExports.js && tsc -p tsconfig.imports-check.json"
},
"repository": {
"type": "git",
"url": "https://github.com/ravendb/ravendb-nodejs-client"
},
"bugs": {
"email": "[email protected]",
"url": "https://issues.hibernatingrhinos.com"
},
"contributors": [
"Hibernating Rhinos"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"ravendb",
"ravendb-client",
"typescript",
"node",
"nodejs",
"nosql"
],
"author": "Hibernating Rhinos",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@swc/core": "^1.7.26",
"@types/mocha": "^10.0.7",
"@types/sinon": "^17.0.3",
"@types/unzipper": "^0.10.10",
"class-transformer": "^0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-unicorn": "^54.0.0",
"glob": "^11.0.0",
"globals": "^15.9.0",
"http-proxy-agent": "^7.0.2",
"lodash.orderby": "^4.6.0",
"mocha": "^10.7.0",
"open": "^10.1.0",
"reflect-metadata": "^0.2.2",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"tshy": "^3.0.2",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0",
"unzipper": "^0.12.3"
},
"dependencies": {
"@types/node": "^20.14.14",
"@types/ws": "^8.5.12",
"date-fns": "^3.6.0",
"safe-memory-cache": "^2.0.0",
"undici": "^6.19.5",
"ws": "^8.18.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.20.0"
},
"tshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
}
}