-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "packages",
"version": "0.0.1",
"license": "MIT",
"description": "A collection of libraries around the Immich project",
"private": false,
"type": "module",
"packageManager": "pnpm@10.32.1",
"engines": {
"pnpm": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/immich-app/packages.git"
},
"scripts": {
"lint": "eslint --max-warnings 0",
"lint:fix": "pnpm lint -- --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "pnpm -r --filter ./packages/* test"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sveltejs/eslint-config": "^9.0.0",
"@types/node": "^25.5.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.12.5",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.7.1",
"svelte": "^5.42.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^8.0.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.0"
}
}