-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 KB
/
package.json
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
44
45
{
"name": "gallery",
"private": "true",
"version": "1.0.0",
"description": "A script for generating static HTML photo and video galleries",
"type": "module",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.15.4",
"scripts": {
"preinstall": "npx only-allow pnpm",
"compile": "tsc",
"build": "node dist/index.js",
"lint": "biome lint --write .",
"format": "biome format --write .",
"check": "biome check --write .",
"all": "pnpm check && pnpm compile && pnpm build",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ltodorov/gallery.git"
},
"author": "Lyubomir Todorov",
"license": "MIT",
"bugs": {
"url": "https://github.com/ltodorov/gallery/issues"
},
"homepage": "https://github.com/ltodorov/gallery#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tsconfig/node-lts": "^22.0.1",
"@tsconfig/strictest": "^2.0.5",
"@types/html-minifier-terser": "^7.0.2",
"@types/node": "^22.10.10",
"@vitest/coverage-v8": "^3.0.4",
"html-minifier-terser": "^7.2.0",
"lefthook": "^1.10.10",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}