-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "posthtml-fetch",
"description": "PostHTML plugin for fetching and displaying remote or local content.",
"version": "4.0.1",
"license": "MIT",
"author": "Cosmin Popovici (https://github.com/cossssmin)",
"bugs": "https://github.com/posthtml/posthtml-fetch/issues",
"homepage": "https://github.com/posthtml/posthtml-fetch",
"repository": "posthtml/posthtml-fetch",
"main": "lib",
"types": "types/index.d.ts",
"files": [
"lib",
"types"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"dev": "vitest",
"release": "npx np",
"pretest": "npm run lint",
"test": "vitest run --coverage",
"lint": "biome lint ./lib ./test"
},
"keywords": [
"html",
"posthtml",
"posthtml-plugin",
"fetch",
"remote",
"response",
"api",
"get"
],
"dependencies": {
"defu": "^6.1.4",
"is-url": "^1.2.4",
"ofetch": "^1.3.4",
"posthtml": "^0.16.6",
"posthtml-expressions": "^1.11.3",
"posthtml-match-helper": "^1.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "^2.0.4",
"vitest": "^2.0.4"
}
}