-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.4 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
{
"name": "@questdb/nodejs-client",
"version": "4.2.0",
"description": "QuestDB Node.js Client",
"scripts": {
"test": "vitest",
"build": "bunchee",
"eslint": "eslint src/**",
"typecheck": "tsc --noEmit",
"format": "prettier --write '{src,test}/**/*.{ts,js,json}'",
"docs": "typedoc --out docs src/index.ts",
"preview:docs": "serve docs"
},
"files": [
"dist/cjs",
"dist/es"
],
"main": "dist/cjs/index.js",
"module": "dist/es/index.mjs",
"types": "dist/cjs/index.d.ts",
"exports": {
"import": {
"types": "./dist/es/index.d.mts",
"default": "./dist/es/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/questdb/nodejs-questdb-client.git"
},
"keywords": [
"QuestDB"
],
"author": "QuestDB",
"license": "Apache-2.0",
"homepage": "https://questdb.github.io/nodejs-questdb-client",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@microsoft/tsdoc": "^0.15.1",
"@types/node": "^22.15.17",
"bunchee": "^6.5.1",
"eslint": "^9.26.0",
"prettier": "^3.5.3",
"serve": "^14.2.4",
"testcontainers": "^10.25.0",
"typedoc": "^0.28.9",
"typescript": "^5.7.2",
"typescript-eslint": "^8.32.0",
"vitest": "^3.1.3"
},
"dependencies": {
"undici": "^7.8.0"
}
}