-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
{
"name": "posthtml-base-url",
"description": "PostHTML plugin for prepending a base string to attribute values.",
"version": "3.1.5",
"license": "MIT",
"author": "PostHTML (https://github.com/posthtml)",
"bugs": "https://github.com/posthtml/posthtml-base-url/issues",
"homepage": "https://github.com/posthtml/posthtml-base-url",
"repository": "posthtml/posthtml-base-url",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "unbuild",
"release": "npx np",
"prepack": "unbuild",
"pretest": "npm run lint",
"lint": "biome lint ./lib",
"dev": "vitest --coverage",
"test": "vitest run --coverage"
},
"keywords": [
"html",
"posthtml",
"base-url",
"posthtml-plugin",
"postcss-base-url"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "^2.0.2",
"unbuild": "^2.0.0",
"vitest": "^2.0.2"
},
"dependencies": {
"defu": "^6.1.4",
"is-url-superb": "^6.1.0",
"pathe": "^2.0.0",
"postcss": "^8.4.35",
"postcss-safe-parser": "^7.0.0",
"srcset": "^5.0.1"
},
"peerDependencies": {
"posthtml": "^0.16.6"
}
}