-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.52 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "astro-lqip",
"version": "1.8.4",
"description": "🖼️ Native extended Astro components for generating low-quality image placeholders (LQIP), compatible with `<Image>`, `<Picture>` and CSS background images.",
"keywords": [
"astro",
"astro-component",
"astro-integration",
"image",
"picture",
"css",
"background",
"lqip"
],
"homepage": "https://astro-lqip.web.app",
"bugs": {
"url": "https://github.com/felixicaza/astro-lqip/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixicaza/astro-lqip.git"
},
"license": "MIT",
"author": "Felix Icaza",
"type": "module",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./components": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsdown",
"build:docs": "pnpm --filter ./docs -r build",
"build:watch": "tsdown --watch",
"dev": "concurrently \"pnpm dev:lib\" \"pnpm dev:fixtures\"",
"dev:docs": "pnpm --filter ./docs -r dev",
"dev:fixtures": "pnpm --filter \"./tests/fixtures/**\" -r --parallel dev",
"dev:lib": "tsdown --watch",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm build",
"release": "bumpp",
"sync:types": " pnpm --filter \"./tests/fixtures/**\" astro sync",
"test": "pnpm test:fixtures",
"test:fixtures": "pnpm --filter \"./tests/fixtures/**\" -r --workspace-concurrency=1 build",
"test:fixtures:custom-base": "pnpm --filter \"./tests/fixtures/custom-base\" build",
"test:fixtures:default": "pnpm --filter \"./tests/fixtures/default\" build",
"test:fixtures:mdx": "pnpm --filter \"./tests/fixtures/mdx\" build",
"test:fixtures:preview": "pnpm --filter \"./tests/fixtures/**\" -r preview",
"test:fixtures:preview:custom-base": "pnpm --filter \"./tests/fixtures/custom-base\" preview",
"test:fixtures:preview:default": "pnpm --filter \"./tests/fixtures/default\" preview",
"test:fixtures:preview:mdx": "pnpm --filter \"./tests/fixtures/mdx\" preview",
"test:fixtures:preview:ssr": "pnpm --filter \"./tests/fixtures/ssr-node\" preview",
"test:fixtures:preview:ssr:custom-base": "pnpm --filter \"./tests/fixtures/ssr-node-custom-base\" preview",
"test:fixtures:ssr": "pnpm --filter \"./tests/fixtures/ssr-node\" build",
"test:fixtures:ssr:custom-base": "pnpm --filter \"./tests/fixtures/ssr-node-custom-base\" build",
"typecheck": "tsc --noEmit"
},
"simple-git-hooks": {
"pre-commit": "pnpm nano-staged"
},
"nano-staged": {
"*": "pnpm lint:fix"
},
"dependencies": {
"plaiceholder": "3.0.0"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@tsdown/css": "0.21.10",
"@types/node": "25.6.0",
"@typescript-eslint/parser": "8.59.0",
"astro": "6.1.9",
"bumpp": "11.0.1",
"concurrently": "9.2.1",
"eslint": "9.39.4",
"eslint-plugin-astro": "1.7.0",
"eslint-plugin-jsonc": "3.1.2",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-package-json": "0.91.1",
"eslint-plugin-yml": "3.3.1",
"globals": "17.5.0",
"jiti": "2.6.1",
"lightningcss": "1.32.0",
"nano-staged": "1.0.2",
"neostandard": "0.13.0",
"simple-git-hooks": "2.13.1",
"tsdown": "0.21.10"
},
"peerDependencies": {
"astro": ">=3.3.0"
},
"engines": {
"node": ">=18.14.1"
}
}