-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 2.82 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 2.82 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@doeixd/dom",
"version": "0.0.7",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"license": "MIT",
"keywords": [
"dom",
"dom-manipulation",
"functional",
"functional-programming",
"currying",
"curry",
"partial-application",
"jquery",
"jquery-alternative",
"vanilla-js",
"typescript",
"type-safe",
"fluent-api",
"method-chaining",
"event-delegation",
"event-handling",
"query-selector",
"element-creation",
"html-template",
"fragment",
"reactive",
"state-management",
"http-client",
"fetch",
"ajax",
"form-handling",
"validation",
"animation",
"transitions",
"view-transitions",
"css-manipulation",
"class-manipulation",
"attribute-manipulation",
"dataset",
"traversal",
"composition",
"pipe",
"declarative",
"immutable",
"null-safe",
"browser",
"frontend",
"ui",
"web-components",
"custom-events",
"observer",
"mutation-observer",
"intersection-observer",
"focus-management",
"keyboard-events",
"drag-drop",
"clipboard",
"local-storage",
"session-storage",
"debounce",
"throttle",
"utility",
"helpers",
"lightweight",
"zero-dependencies",
"esm",
"commonjs",
"tree-shakeable"
],
"devDependencies": {
"@types/node": "^22.10.1",
"happy-dom": "^20.0.10",
"pridepack": "^2.6.2",
"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 --environment happy-dom",
"find-exports": "node scripts/find-exports.js"
},
"private": false,
"description": "Simple, functional, DOM library",
"repository": {
"url": "https://github.com/doeixd/dom",
"type": "git"
},
"homepage": "https://github.com/doeixd/dom",
"bugs": {
"url": "https://github.com/doeixd/dom/issues"
},
"author": "Patrick Glen",
"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"
}
},
"typesVersions": {
"*": {}
}
}