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
36 lines (36 loc) · 1003 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1003 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
{
"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 . && tsc --noEmit",
"format": "prettier --config .prettierrc.json -w ./**/*.ts"
},
"dependencies": {
"dotenv": "^17.4.2",
"find-my-way": "^9.6.0",
"semver": "^7.8.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.3",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"async-listen": "^3.1.0",
"eslint": "^10.5.0",
"globals": "^17.6.0",
"prettier": "^3.8.4",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}