-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.75 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.75 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "watch-selector",
"version": "2.3.0",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"license": "MIT",
"keywords": [
"watch element",
"watch-element",
"watch selector",
"selector-observer",
"webcomponents",
"mount observer",
"selector observer",
"observer",
"reactive",
"mutation-observer",
"web-components",
"dom-manipulation",
"event-handling",
"state-management",
"pridepack"
],
"devDependencies": {
"@types/node": "^22.10.2",
"happy-dom": "^15.11.7",
"pridepack": "2.6.4",
"standard-version": "^9.5.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"scripts": {
"release": "standard-version && git push --follow-tags origin main",
"prepublishOnly": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"clean": "pridepack clean",
"watch": "pridepack watch",
"start": "pridepack start",
"dev": "pridepack dev",
"test": "vitest --run --reporter=default --reporter=json --outputFile=test-results.json",
"runDebug": "bun run debug.ts"
},
"private": false,
"description": "Runs a function when a selector is added to dom",
"repository": {
"url": "git+https://github.com/doeixd/watch.git",
"type": "git"
},
"homepage": "https://github.com/doeixd/watch",
"bugs": {
"url": "https://github.com/doeixd/watch/issues"
},
"author": "Patrick Glenn",
"publishConfig": {
"access": "public"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/production/index.js",
"module": "./dist/esm/production/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"development": {
"require": "./dist/cjs/development/index.js",
"import": "./dist/esm/development/index.js"
},
"require": "./dist/cjs/production/index.js",
"import": "./dist/esm/production/index.js"
},
"./explicit": {
"types": "./dist/types/explicit.d.ts",
"development": {
"require": "./dist/cjs/development/explicit.js",
"import": "./dist/esm/development/explicit.js"
},
"require": "./dist/cjs/production/explicit.js",
"import": "./dist/esm/production/explicit.js"
},
"./fluent": {
"types": "./dist/types/fluent.d.ts",
"development": {
"require": "./dist/cjs/development/fluent.js",
"import": "./dist/esm/development/fluent.js"
},
"require": "./dist/cjs/production/fluent.js",
"import": "./dist/esm/production/fluent.js"
}
},
"typesVersions": {
"*": {
"explicit": [
"./dist/types/explicit.d.ts"
],
"fluent": [
"./dist/types/fluent.d.ts"
]
}
}
}