-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.08 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
{
"name": "adonis-clickhouse",
"version": "1.0.1",
"type": "module",
"description": "AdonisJS addon for ClickHouse",
"main": "build/index.js",
"files": [
"build"
],
"exports": {
".": "./build/index.js",
"./services/main": "./build/services/main.js",
"./providers/clickhouse_provider": "./build/providers/clickhouse_provider.js",
"./types": "./build/types.js"
},
"engines": {
"node": ">=18.16.0"
},
"scripts": {
"build": "npm run compile",
"dev": "tsup-node --watch --onSuccess 'tsc -d'",
"typecheck": "tsc --noEmit",
"copy:templates": "copyfiles --up 1 \"stubs/**/**/*.stub\" build",
"compile": "tsup-node && tsc --emitDeclarationOnly --declaration",
"postcompile": "npm run copy:templates",
"test": "node --loader ts-node/esm --enable-source-maps bin/test.ts"
},
"bugs": {
"url": "https://github.com/shiny/adonis-clickhouse/issues"
},
"keywords": [
"adonisjs",
"adonis6",
"clickhouse"
],
"author": "Chieh",
"license": "MIT",
"homepage": "https://github.com/shiny/adonis-clickhouse",
"repository": {
"type": "git",
"url": "git+https://github.com/shiny/adonis-clickhouse.git"
},
"devDependencies": {
"@adonisjs/assembler": "^7.4.0",
"@adonisjs/core": "^6.5.0",
"@adonisjs/eslint-config": "^1.3.0",
"@adonisjs/prettier-config": "^1.3.0",
"@adonisjs/tsconfig": "^1.3.0",
"@japa/expect": "3.0.2",
"@japa/expect-type": "2.0.1",
"@japa/runner": "3.1.2",
"@types/node": "^20.12.2",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"nock": "^13.5.4",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"peerDependencies": {
"@adonisjs/core": "^6.1.5-27"
},
"tsup": {
"entry": [
"./index.ts",
"./src/types.ts",
"./services/main.ts",
"./providers/clickhouse_provider.ts"
],
"outDir": "./build",
"clean": true,
"format": "esm",
"dts": false,
"sourcemap": true,
"target": "esnext"
},
"dependencies": {
"@clickhouse/client": "^0.3.1",
"@poppinss/utils": "^6.7.3"
}
}