-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 946 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 946 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
36
37
38
{
"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 .",
"lint:fix": "eslint --fix .",
"pretty": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"cheerio": "^1.2.0",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.17"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"vitest": "^4.1.5",
"wrangler": "^4.88.0"
}
}