generated from NezuChan/golang-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "nezu-fuzzier",
"version": "2.0.2",
"description": "A Fast FuzzySearch service. for autocompletion stuff.",
"main": "dist",
"scripts": {
"start": "bun src/index.ts",
"start:watch": "bun --watch src/index.ts",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --fix --ext ts",
"build": "tsc"
},
"type": "module",
"author": "KagChi",
"license": "GPL-3.0",
"devDependencies": {
"@hazmi35/eslint-config": "^9.0.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.76",
"@types/node": "^18.17.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"bun-types": "^0.7.3",
"eslint": "^8.41.0",
"rimraf": "^5.0.1",
"typescript": "^5.0.4"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"@hazmi35/eslint-config/typescript"
],
"rules": {
"@typescript-eslint/naming-convention": "off"
}
},
"dependencies": {
"@bogeychan/elysia-logger": "^0.0.4",
"elysia": "^0.6.3",
"pino": "^8.15.0",
"pino-pretty": "^10.2.0",
"redis": "^4.6.7",
"redis-om": "^0.4.2"
}
}