-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 954 Bytes
/
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
{
"name": "dompa",
"version": "1.0.2",
"description": "A zero-dependency HTML5 document parser.",
"author": "Asko Nõmm <asko@nmm.ee> (https://nmm.ee)",
"main": "dist/dompa.js",
"module": "dist/dompa.mjs",
"type": "module",
"license": "MIT",
"keywords": [
"dom",
"document",
"parser",
"html"
],
"bugs": {
"url": "https://github.com/askonomm/dompa/issues",
"email": "asko@nmm.ee"
},
"repository": {
"type": "git",
"url": "git+https://github.com/askonomm/dompa.git"
},
"scripts": {
"bundle": "tsup src/dompa.ts",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^22.10.10",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"tsup": "^8.3.5",
"typescript": "~5.7.3",
"vite": "^5.4.11",
"vitest": "^2.1.8"
},
"dependencies": {
"effect": "^3.12.7"
}
}