-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.22 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
{
"name": "posthtml-extra-attributes",
"description": "Add new attributes to elements in your HTML.",
"version": "3.1.4",
"license": "MIT",
"author": "Cosmin Popovici (https://github.com/cossssmin)",
"bugs": "https://github.com/posthtml/posthtml-extra-attributes/issues",
"homepage": "https://github.com/posthtml/posthtml-extra-attributes",
"repository": "posthtml/posthtml-extra-attributes",
"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 ./test",
"pretest": "npm run lint",
"release": "npx np"
},
"keywords": [
"attributes",
"html",
"posthtml",
"posthtml-plugin"
],
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@vitest/coverage-v8": "^3.0.5",
"posthtml": "^0.16.4",
"unbuild": "^2.0.0",
"vitest": "^3.0.5"
},
"dependencies": {
"posthtml-match-helper": "^2.0.0"
}
}