-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.69 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
{
"name": "fastify-orama",
"version": "4.0.0",
"description": "Orama search-engine plugin for Fastify",
"main": "index.js",
"types": "index.d.ts",
"author": {
"name": "Mateo Nunez",
"email": "mateonunez95@gmail.com",
"url": "https://github.com/mateonunez"
},
"scripts": {
"lint": "standard | snazzy",
"lint:fix": "standard --fix | snazzy",
"pretest": "npm run clean",
"test": "npm run lint && npm run unit && npm run typescript",
"posttest": "npm run clean",
"typescript": "tstyche",
"prepare": "husky",
"clean": "rm -f orama_test* && rm -f *.msp",
"preunit": "npm run clean",
"unit": "c8 borp -T --reporter spec",
"postunit": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mateonunez/fastify-orama.git"
},
"keywords": [
"fastify",
"orama",
"database",
"search",
"engine"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mateonunez/fastify-orama/issues"
},
"homepage": "https://github.com/mateonunez/fastify-orama#readme",
"dependencies": {
"@orama/orama": "^3.0.5",
"@orama/plugin-data-persistence": "^3.0.5",
"fastify-plugin": "^5.0.0"
},
"devDependencies": {
"@types/node": "^25.0.0",
"borp": "^0.21.0",
"c8": "^11.0.0",
"fastify": "^5.4.0",
"fastify-tsconfig": "^3.0.0",
"husky": "^9.1.7",
"snazzy": "^9.0.0",
"standard": "^17.1.2",
"tstyche": "^6.0.0",
"typescript": "^6.0.2"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.8.1+sha512.c50088ba998c67b8ca8c99df8a5e02fd2ae2e2b29aaf238feaa9e124248d3f48f9fb6db2424949ff901cffbb5e0f0cc1ad6aedb602cd29450751d11c35023677"
}