-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.15 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"$schema": "https://json.schemastore.org/package.json",
"name": "astro-better-image-service",
"version": "0.0.0-development",
"description": "Astro integration for image compression and conversion, superseding Astro's default image service.",
"keywords": [
"astro-integration",
"withastro",
"astro",
"images",
"compression"
],
"license": "MIT",
"author": "risu729",
"homepage": "https://github.com/risu729/astro-better-image-service#readme",
"repository": {
"type": "git",
"url": "https://github.com/risu729/astro-better-image-service.git"
},
"bugs": {
"url": "https://github.com/risu729/astro-better-image-service/issues"
},
"scripts": {
"prepare": "husky && bun link"
},
"dependencies": {
"sharp": "^0.33.5",
"svgo": "^3.3.2"
},
"peerDependencies": {
"astro": "^4.7.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/cz-commitlint": "19.6.1",
"@commitlint/types": "19.5.0",
"@cspell/cspell-types": "8.17.1",
"@playwright/test": "1.49.1",
"@total-typescript/tsconfig": "1.0.4",
"@tsconfig/bun": "1.0.7",
"@tsconfig/strictest": "2.0.5",
"@types/bun": "1.1.14",
"@types/ignore-walk": "4.0.3",
"@types/node": "22.10.2",
"ajv": "8.17.1",
"ajv-draft-04": "1.0.0",
"ajv-formats": "3.0.1",
"astro": "4.16.18",
"commitizen": "4.3.1",
"cspell": "8.17.1",
"husky": "9.1.7",
"ignore-sync": "8.0.0",
"ignore-walk": "7.0.0",
"json5": "2.2.3",
"jsonc-parser": "3.3.1",
"knip": "5.41.1",
"markdownlint-cli2": "0.16.0",
"prettier": "3.4.2",
"renovate": "39.79.1",
"semantic-release": "24.2.0",
"semver": "7.6.3",
"ts-graphviz": "2.1.5",
"typescript": "5.7.2"
},
"trustedDependencies": [
"@biomejs/biome",
"better-sqlite3",
"core-js-pure",
"dtrace-provider",
"esbuild",
"protobufjs",
"re2",
"sharp"
],
"type": "module",
"files": ["dist", "!*.tsbuildinfo", "src"],
"exports": {
".": "./dist/index.js",
"./image-service": "./dist/image-service.js",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public",
"provenance": true
}
}