-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "@elonehoo/dom-traversal",
"type": "module",
"version": "0.0.6",
"description": "Iteratively walk any DOM node.",
"author": "Elone Hoo <huchengyea@163.com>",
"license": "MIT",
"homepage": "https://github.com/elonehoo/dom-traversal#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/elonehoo/dom-traversal"
},
"bugs": "https://github.com/elonehoo/dom-traversal/issues",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"scripts": {
"build": "rimraf dist && unbuild",
"prepublishOnly": "npm run build",
"release": "bumpp package.json --commit --push --tag && pnpm -r publish --access public",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@elonehoo/rimraf": "^0.0.1",
"@types/node": "22.10.1",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^2.1.8",
"bumpp": "9.8.1",
"c8": "^10.1.2",
"eslint": "9.16.0",
"happy-dom": "^15.11.7",
"pnpm": "9.15.0",
"typescript": "5.7.2",
"unbuild": "^2.0.0",
"vite": "6.0.3",
"vitest": "2.1.8"
}
}