-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.03 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
{
"name": "@aurelien-conte/adonisjs-elasticsearch",
"version": "1.0.5",
"type": "module",
"description": "Elasticsearch provider for AdonisJS",
"main": "build/index.js",
"packageManager": "pnpm@10.27.0",
"files": [
"build"
],
"exports": {
".": "./build/index.js",
"./services/main": "./build/services/main.js",
"./providers/elasticsearch_provider": "./build/providers/elasticsearch_provider.js",
"./types": "./build/types.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm 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": "pnpm run copy:templates",
"test": "node --loader ts-node/esm --enable-source-maps bin/test.ts"
},
"keywords": [
"adonisjs",
"adonis6",
"elasticsearch"
],
"author": "Aurelien Conte",
"license": "MIT",
"homepage": "https://github.com/AurelienConte/adonisjs-elasticsearch",
"repository": {
"type": "git",
"url": "git+https://github.com/AurelienConte/adonisjs-elasticsearch.git"
},
"tsup": {
"entry": [
"./index.ts",
"./src/types.ts",
"./services/main.ts",
"./providers/elasticsearch_provider.ts"
],
"outDir": "./build",
"clean": true,
"format": "esm",
"dts": false,
"sourcemap": true,
"target": "esnext"
},
"dependencies": {
"@adonisjs/tsconfig": "^1.4.1",
"@elastic/elasticsearch": "^8.19.1"
},
"peerDependencies": {
"@adonisjs/core": "^6.12.1"
},
"devDependencies": {
"@japa/expect": "^3.0.7",
"@japa/expect-type": "^2.0.4",
"@japa/runner": "^3.1.4",
"@swc/core": "^1.15.8",
"@types/node": "^25.0.3",
"copyfiles": "^2.4.1",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"types": "./build/index.d.ts",
"bugs": {
"url": "https://github.com/AurelienConte/adonisjs-elasticsearch/issues"
}
}