-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.7 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@1natsu/wait-element",
"description": "Detect the appearance of an element in the browser DOM",
"version": "4.1.1",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "1natsu",
"contributors": [
"1natsu"
],
"bugs": {
"url": "https://github.com/1natsu172/wait-element/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/1natsu172/wait-element"
},
"homepage": "https://github.com/1natsu172/wait-element",
"keywords": [
"DOM",
"MutationObserver",
"Promise",
"element",
"selector",
"querySelector",
"detect",
"wait",
"await",
"check",
"exist",
"appearance"
],
"browserslist": [
"fully supports abortcontroller",
"fully supports mutationobserver"
],
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs"
},
"./detectors": {
"import": "./dist/detectors.mjs"
}
},
"main": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"dependencies": {
"defu": "^6.1.4",
"many-keys-map": "^2.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jsdom": "21.1.7",
"@vitest/coverage-v8": "2.1.5",
"@vitest/ui": "2.1.5",
"jsdom": "25.0.1",
"typescript": "5.6.3",
"unbuild": "2.0.0",
"vitest": "2.1.5"
},
"scripts": {
"test": "vitest",
"test-ci": "vitest run",
"coverage": "vitest --coverage --ui",
"biome": "biome check --write ./src",
"build": "unbuild",
"prerelease": "unbuild",
"release": "pnpm dlx np --test-script=test-ci"
},
"packageManager": "[email protected]+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a"
}