domquery-com 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "domquery-com",
3
+ "version": "1.0.0",
4
+ "description": "A modern JavaScript library that integrates all features needed for web app development. Optimized for hybrid app/WebView environments.",
5
+ "main": "domquery.js",
6
+ "module": "domquery.js",
7
+ "browser": "domquery.min.js",
8
+ "unpkg": "domquery.min.js",
9
+ "jsdelivr": "domquery.min.js",
10
+ "keywords": [
11
+ "javascript",
12
+ "dom-manipulation",
13
+ "hybrid-app",
14
+ "webview",
15
+ "mobile-web",
16
+ "spa",
17
+ "ajax",
18
+ "animation",
19
+ "jquery-alternative"
20
+ ],
21
+ "author": {
22
+ "name": "Byeonghee Gong & Taeyoon Gong",
23
+ "email": "bankcgi@naver.com, domquery.com@gmail.com"
24
+ },
25
+ "license": "MIT",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/domquery-com/domquery.git"
29
+ },
30
+ "homepage": "https://domquery.com",
31
+ "bugs": {
32
+ "url": "https://github.com/domquery-com/domquery/issues"
33
+ },
34
+ "files": [
35
+ "domquery.js",
36
+ "domquery.min.js",
37
+ "src/",
38
+ "src_min/",
39
+ "LICENSE",
40
+ "README.md",
41
+ "README.ko.md"
42
+ ],
43
+ "exports": {
44
+ ".": {
45
+ "import": "./domquery.js",
46
+ "require": "./domquery.js",
47
+ "default": "./domquery.js"
48
+ },
49
+ "./min": "./domquery.min.js",
50
+ "./minified": "./domquery.min.js"
51
+ }
52
+ }
53
+