-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 932 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 932 Bytes
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
{
"name": "mue-api",
"private": true,
"description": "API for Mue, a new tab extension.",
"repository": {
"url": "github:mue/api"
},
"homepage": "https://api.muetab.com",
"author": "The Mue Authors (https://github.com/mue/api/graphs/contributors)",
"license": "MIT",
"main": "src/",
"version": "1.7.0",
"scripts": {
"deploy": "wrangler deploy",
"start": "wrangler dev",
"dev": "wrangler dev",
"lint": "eslint \"./src/**/*.{js,json}\"",
"lint:fix": "eslint --fix \"./src/**/*.{js,json}\"",
"pretty": "prettier --write \"./src/**/*.{js,json}\""
},
"dependencies": {
"cheerio": "^1.2.0",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"eslint": "10",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"prettier": "^3.8.2",
"wrangler": "^4.81.1"
}
}