-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 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
{
"name": "scope-api",
"version": "1.0.0",
"description": "Scope API",
"author": {
"name": "Timur Badretdinov",
"url": "https://github.com/Destiner"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/scope-sh/scope-api.git"
},
"type": "module",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"start": "NODE_ENV=production bun run src/index.ts",
"dev": "bun run --hot src/index.ts",
"lint": "bun run lint:prettier && bun run lint:eslint",
"lint:prettier": "prettier -c \"src/**/*.{json,js,ts}\"",
"lint:eslint": "eslint \"src/**/*.{js,ts}\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hono/valibot-validator": "^0.5.2",
"@shazow/whatsabi": "^0.22.2",
"drizzle-orm": "^0.44.1",
"evm-providers": "^0.5.7",
"hono": "^4.7.11",
"ky": "^1.8.1",
"minio": "^8.0.5",
"minisearch": "^7.1.2",
"pg": "^8.16.0",
"valibot": "^1.1.0",
"viem": "^2.30.6"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/bun": "^1.2.15",
"@types/pg": "^8.15.4",
"eslint": "^9.28.0",
"eslint-import-resolver-typescript": "^4.4.2",
"eslint-plugin-import-x": "^4.15.0",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1"
}
}