forked from vercel/hazel
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "carrots",
"version": "1.3.0",
"description": "Lightweight update server for Electron apps",
"repository": "PascalPixel/carrots",
"license": "MIT",
"type": "module",
"main": "lib/index.ts",
"scripts": {
"dev": "tsx watch server.ts",
"start": "tsx server.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "prettier --config .prettierrc.json -c ./**/*.ts && eslint --config .eslintrc.json ./**/*.ts && tsc --noEmit",
"format": "prettier --config .prettierrc.json -w ./**/*.ts"
},
"dependencies": {
"dotenv": "^17.2.3",
"find-my-way": "^9.4.0",
"react": "^19",
"react-dom": "^19",
"semver": "^7.7.3"
},
"devDependencies": {
"@types/node": "^25.0.10",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"async-listen": "^3.1.0",
"eslint": "^9",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}