This repository has been archived by the owner on Nov 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
120 lines (120 loc) · 3.09 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@foadonis/magnify",
"description": "Plug and play full-text search for your Adonis application.",
"version": "0.0.1",
"engines": {
"node": ">=20.6.0"
},
"type": "module",
"files": [
"build",
"!build/bin",
"!build/tests"
],
"exports": {
".": "./build/index.js",
"./commands": "./build/commands/main.js",
"./magnify_provider": "./build/providers/magnify_provider.js",
"./services/main": "./build/services/main.js",
"./types": "./build/src/types.js"
},
"scripts": {
"clean": "del-cli build",
"copy:templates": "copyfiles \"stubs/**/*.stub\" build",
"index:commands": "adonis-kit index build/commands",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"quick:test": "node --import=./tsnode.esm.js --enable-source-maps bin/test.ts",
"pretest": "npm run lint",
"test": "c8 npm run quick:test",
"prebuild": "npm run lint && npm run clean",
"build": "tsc",
"postbuild": "npm run copy:templates && npm run index:commands",
"release": "np",
"version": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"adonis",
"adonisjs",
"secrets",
"typescript"
],
"author": {
"name": "Martin Paucot",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/FriendsOfAdonis/magnify"
},
"bugs": {
"url": "https://github.com/FriendsOfAdonis/magnify/issues"
},
"homepage": "https://friendsofadonis.github.io/docs/magnify/getting-started",
"license": "MIT",
"devDependencies": {
"@adonisjs/assembler": "^7.7.0",
"@adonisjs/core": "^6.12.1",
"@adonisjs/eslint-config": "^2.0.0-beta.7",
"@adonisjs/lucid": "^21.2.0",
"@adonisjs/prettier-config": "^1.3.0",
"@adonisjs/tsconfig": "^1.3.0",
"@japa/assert": "^3.0.0",
"@japa/expect-type": "^2.0.2",
"@japa/file-system": "^2.3.0",
"@japa/plugin-adonisjs": "^3.0.1",
"@japa/runner": "^3.1.4",
"@swc/core": "^1.6.3",
"@types/luxon": "^3.4.2",
"@types/node": "^20.14.5",
"@types/sinon": "^17.0.3",
"algoliasearch": "^5.6.1",
"better-sqlite3": "^11.3.0",
"c8": "^10.1.2",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"eslint": "^9.9.0",
"luxon": "^3.5.0",
"meilisearch": "^0.42.0",
"np": "^10.0.6",
"prettier": "^3.3.2",
"reflect-metadata": "^0.2.2",
"sinon": "^19.0.2",
"testcontainers": "^10.13.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typesense": "^1.8.2"
},
"peerDependencies": {
"@adonisjs/core": "^6.2.0",
"@adonisjs/lucid": "^21.2.0",
"luxon": "^3.5.0"
},
"optionalDependencies": {
"algoliasearch": "^5.6.1",
"meilisearch": "^0.42.0",
"typesense": "^1.8.2"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"np": {
"message": "chore(release): %s",
"tag": "latest",
"branch": "main",
"anyBranch": false
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"prettier": "@adonisjs/prettier-config"
}