-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "astro-compressor",
"version": "1.0.0",
"description": "A gzip and brotli compressor for Astro",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sondr3/astro-compressor.git"
},
"author": "Sondre Nilsen <sondre@eons.io> (https://www.eons.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sondr3/astro-compressor/issues"
},
"homepage": "https://github.com/sondr3/astro-compressor#readme",
"keywords": ["astro", "astro-integration", "astro-component", "performance"],
"files": ["dist/**", "CHANGELOG.md", "README.md"],
"scripts": {
"dev": "tsc --watch --incremental",
"build": "rm -rf dist && tsc",
"test": "vitest",
"prepare": "lefthook install",
"check": "biome check",
"fix": "biome check --write"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tsconfig/recommended": "1.0.8",
"@tsconfig/strictest": "2.0.5",
"@types/node": "22.10.0",
"astro": "4.16.16",
"lefthook": "1.8.4",
"typescript": "5.7.2",
"vitest": "2.1.6"
}
}