-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.73 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.73 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
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
79
{
"name": "@1natsu/wait-element",
"description": "Detect the appearance of an element in the browser DOM",
"version": "4.2.0",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "1natsu",
"contributors": [
"1natsu"
],
"bugs": {
"url": "https://github.com/1natsu172/wait-element/issues",
"email": "1natsu172@users.noreply.github.com"
},
"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": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@types/jsdom": "28.0.1",
"@vitest/coverage-v8": "4.1.5",
"@vitest/ui": "4.1.5",
"jsdom": "29.1.1",
"typescript": "6.0.3",
"unbuild": "3.6.1",
"vitest": "4.1.5"
},
"scripts": {
"test": "vitest",
"test-ci": "vitest run",
"coverage": "vitest --coverage --ui",
"biome": "biome check --write ./src",
"typecheck": "tsc --noEmit",
"build": "unbuild",
"prerelease": "unbuild",
"release": "pnpm dlx np --test-script=test-ci"
},
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8"
}