-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.32 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
{
"name": "posthtml-url-parameters",
"description": "PostHTML plugin for adding parameters to URLs.",
"version": "3.1.0",
"license": "MIT",
"author": "Cosmin Popovici (https://github.com/cossssmin)",
"bugs": "https://github.com/posthtml/posthtml-url-parameters/issues",
"homepage": "https://github.com/posthtml/posthtml-url-parameters",
"repository": "posthtml/posthtml-url-parameters",
"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": {
"dev": "vitest",
"build": "unbuild",
"prepack": "unbuild",
"test": "vitest run --coverage",
"lint": "biome lint ./lib",
"pretest": "npm run lint",
"release": "npx np"
},
"keywords": [
"html",
"posthtml-plugin",
"parameters",
"posthtml",
"query-string",
"searchparams",
"url-parser"
],
"dependencies": {
"is-url-superb": "^6.1.0",
"posthtml": "^0.16.6",
"posthtml-match-helper": "^2.0.0",
"query-string": "^9.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "^2.0.1",
"unbuild": "^2.0.0",
"vitest": "^2.0.1"
}
}