-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 4.12 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 4.12 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
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
99
100
101
102
{
"name": "clickhouse-js",
"description": "Official JS client for ClickHouse DB",
"homepage": "https://clickhouse.com",
"license": "Apache-2.0",
"keywords": [
"clickhouse",
"sql",
"client"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ClickHouse/clickhouse-js.git"
},
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"typecheck": "npm --workspaces run typecheck",
"lint": "npm --workspaces run lint",
"lint:fix": "npm --workspaces run lint:fix",
"build": "npm run --workspaces build",
"prettify": "prettier --write .",
"test": "echo -e \"Please specify a test script to run. See \\033[1mnpm run\\033[0m for reference.\" && exit 1",
"test:common:unit:node": "CLICKHOUSE_TEST_SKIP_INIT=1 TEST_MODE=common vitest -c vitest.node.config.ts",
"test:common:unit:web": "CLICKHOUSE_TEST_SKIP_INIT=1 TEST_MODE=common vitest -c vitest.web.config.ts",
"test:common:integration:node": "TEST_MODE=common-integration vitest -c vitest.node.config.ts",
"test:common:integration:web": "TEST_MODE=common-integration vitest -c vitest.web.config.ts",
"test:node:unit": "CLICKHOUSE_TEST_SKIP_INIT=1 TEST_MODE=unit vitest -c vitest.node.config.ts",
"test:node:integration:tls": "TEST_MODE=tls vitest -c vitest.node.config.ts",
"test:node:integration": "TEST_MODE=integration vitest -c vitest.node.config.ts",
"test:node:integration:local_cluster": "CLICKHOUSE_TEST_ENVIRONMENT=local_cluster TEST_MODE=integration vitest -c vitest.node.config.ts",
"test:node:integration:cloud": "CLICKHOUSE_TEST_ENVIRONMENT=cloud TEST_MODE=integration vitest -c vitest.node.config.ts",
"test:node:all": "TEST_MODE=all vitest -c vitest.node.config.ts",
"test:node:coverage": "VITEST_COVERAGE=true TEST_MODE=all vitest -c vitest.node.config.ts",
"test:web:unit": "CLICKHOUSE_TEST_SKIP_INIT=1 TEST_MODE=unit vitest -c vitest.web.config.ts",
"test:web:integration": "TEST_MODE=integration vitest -c vitest.web.config.ts",
"test:web:integration:local_cluster": "TEST_MODE=integration CLICKHOUSE_TEST_ENVIRONMENT=local_cluster vitest -c vitest.web.config.ts",
"test:web:integration:cloud": "TEST_MODE=integration CLICKHOUSE_TEST_ENVIRONMENT=cloud vitest -c vitest.web.config.ts",
"test:web:integration:cloud:jwt": "TEST_MODE=jwt CLICKHOUSE_TEST_ENVIRONMENT=cloud vitest -c vitest.web.config.ts",
"test:web:all": "TEST_MODE=all vitest -c vitest.web.config.ts",
"test:web:coverage": "VITEST_COVERAGE=true TEST_MODE=all vitest -c vitest.web.config.ts",
"//": "See https://github.com/kylebarron/parquet-wasm/issues/798",
"postinstall": "cd node_modules/parquet-wasm && npm pkg delete type",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@faker-js/faker": "^10.3.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.71.0",
"@opentelemetry/context-zone": "^2.6.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.213.0",
"@opentelemetry/instrumentation-document-load": "^0.58.0",
"@opentelemetry/instrumentation-fetch": "^0.213.0",
"@opentelemetry/sdk-trace-web": "^2.5.1",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "25.5.0",
"@types/split2": "^4.2.3",
"@types/uuid": "^11.0.0",
"@vitest/browser-playwright": "4.1.0",
"@vitest/coverage-istanbul": "^4.1.0",
"@vitest/coverage-v8": "^4.1.0",
"apache-arrow": "^21.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-expect-type": "^0.6.2",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jsonwebtoken": "^9.0.3",
"lint-staged": "^16.4.0",
"parquet-wasm": "0.7.1",
"prettier": "3.8.1",
"split2": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"uuid": "^13.0.0",
"vitest": "^4.0.16"
},
"workspaces": [
"./packages/*"
],
"files": [
"dist"
],
"lint-staged": {
"*.ts": [
"prettier --write",
"npm run lint:fix"
],
"*.json": [
"prettier --write"
],
"*.yml": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}