@bquery/bquery 1.1.0 → 1.1.1
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 +120 -120
package/package.json
CHANGED
|
@@ -1,120 +1,120 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@bquery/bquery",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "The jQuery for the Modern Web Platform - Zero build, TypeScript-first library with reactivity, components, and motion",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/full.umd.js",
|
|
7
|
-
"module": "./dist/index.es.mjs",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"unpkg": "./dist/full.umd.js",
|
|
10
|
-
"jsdelivr": "./dist/full.umd.js",
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"import": "./dist/index.es.mjs",
|
|
14
|
-
"require": "./dist/full.umd.js",
|
|
15
|
-
"types": "./dist/index.d.ts"
|
|
16
|
-
},
|
|
17
|
-
"./full": {
|
|
18
|
-
"import": "./dist/full.es.mjs",
|
|
19
|
-
"require": "./dist/full.umd.js",
|
|
20
|
-
"types": "./dist/full.d.ts"
|
|
21
|
-
},
|
|
22
|
-
"./core": {
|
|
23
|
-
"import": "./dist/core.es.mjs",
|
|
24
|
-
"types": "./dist/core/index.d.ts"
|
|
25
|
-
},
|
|
26
|
-
"./reactive": {
|
|
27
|
-
"import": "./dist/reactive.es.mjs",
|
|
28
|
-
"types": "./dist/reactive/index.d.ts"
|
|
29
|
-
},
|
|
30
|
-
"./component": {
|
|
31
|
-
"import": "./dist/component.es.mjs",
|
|
32
|
-
"types": "./dist/component/index.d.ts"
|
|
33
|
-
},
|
|
34
|
-
"./motion": {
|
|
35
|
-
"import": "./dist/motion.es.mjs",
|
|
36
|
-
"types": "./dist/motion/index.d.ts"
|
|
37
|
-
},
|
|
38
|
-
"./security": {
|
|
39
|
-
"import": "./dist/security.es.mjs",
|
|
40
|
-
"types": "./dist/security/index.d.ts"
|
|
41
|
-
},
|
|
42
|
-
"./platform": {
|
|
43
|
-
"import": "./dist/platform.es.mjs",
|
|
44
|
-
"types": "./dist/platform/index.d.ts"
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
"files": [
|
|
48
|
-
"dist",
|
|
49
|
-
"src",
|
|
50
|
-
"README.md",
|
|
51
|
-
"LICENSE.md"
|
|
52
|
-
],
|
|
53
|
-
"sideEffects": false,
|
|
54
|
-
"scripts": {
|
|
55
|
-
"dev": "vitepress dev docs",
|
|
56
|
-
"build:docs": "vitepress build docs",
|
|
57
|
-
"preview": "vitepress preview docs",
|
|
58
|
-
"playground": "vite dev playground",
|
|
59
|
-
"build": "bun run build:lib && bun run build:umd && bun run build:types",
|
|
60
|
-
"build:lib": "vite build",
|
|
61
|
-
"build:umd": "vite build --config vite.umd.config.ts",
|
|
62
|
-
"build:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
63
|
-
"test": "bun test",
|
|
64
|
-
"test:watch": "bun test --watch",
|
|
65
|
-
"lint": "eslint . --fix",
|
|
66
|
-
"lint:types": "tsc --noEmit",
|
|
67
|
-
"format": "prettier --write .",
|
|
68
|
-
"format:check": "prettier --check .",
|
|
69
|
-
"docs:api": "typedoc",
|
|
70
|
-
"clean": "rimraf dist",
|
|
71
|
-
"prepublishOnly": "bun run clean && bun run build && bun test"
|
|
72
|
-
},
|
|
73
|
-
"keywords": [
|
|
74
|
-
"dom",
|
|
75
|
-
"manipulation",
|
|
76
|
-
"jquery",
|
|
77
|
-
"modern",
|
|
78
|
-
"typescript",
|
|
79
|
-
"signals",
|
|
80
|
-
"reactive",
|
|
81
|
-
"components",
|
|
82
|
-
"web-components",
|
|
83
|
-
"animation",
|
|
84
|
-
"motion",
|
|
85
|
-
"zero-build",
|
|
86
|
-
"cdn"
|
|
87
|
-
],
|
|
88
|
-
"author": "Jonas Pfalzgraf <support@josunlp.de>",
|
|
89
|
-
"license": "MIT",
|
|
90
|
-
"repository": {
|
|
91
|
-
"type": "git",
|
|
92
|
-
"url": "https://github.com/bQuery/bQuery.git"
|
|
93
|
-
},
|
|
94
|
-
"homepage": "https://bQuery.flausch-code.de",
|
|
95
|
-
"bugs": {
|
|
96
|
-
"url": "https://github.com/bQuery/bQuery/issues"
|
|
97
|
-
},
|
|
98
|
-
"publishConfig": {
|
|
99
|
-
"access": "public",
|
|
100
|
-
"registry": "https://registry.npmjs.org/"
|
|
101
|
-
},
|
|
102
|
-
"engines": {
|
|
103
|
-
"node": ">=18.0.0"
|
|
104
|
-
},
|
|
105
|
-
"devDependencies": {
|
|
106
|
-
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
|
107
|
-
"@typescript-eslint/parser": "^8.53.1",
|
|
108
|
-
"bun-types": "^1.3.6",
|
|
109
|
-
"eslint": "^9.39.2",
|
|
110
|
-
"eslint-config-prettier": "^9.1.2",
|
|
111
|
-
"globals": "^15.15.0",
|
|
112
|
-
"happy-dom": "^20.3.7",
|
|
113
|
-
"prettier": "^3.8.1",
|
|
114
|
-
"rimraf": "^5.0.10",
|
|
115
|
-
"typedoc": "^0.25.13",
|
|
116
|
-
"typescript": "^5.9.3",
|
|
117
|
-
"vite": "^5.4.21",
|
|
118
|
-
"vitepress": "^1.6.4"
|
|
119
|
-
}
|
|
120
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@bquery/bquery",
|
|
3
|
+
"version": "1.1.1",
|
|
4
|
+
"description": "The jQuery for the Modern Web Platform - Zero build, TypeScript-first library with reactivity, components, and motion",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/full.umd.js",
|
|
7
|
+
"module": "./dist/index.es.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"unpkg": "./dist/full.umd.js",
|
|
10
|
+
"jsdelivr": "./dist/full.umd.js",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/index.es.mjs",
|
|
14
|
+
"require": "./dist/full.umd.js",
|
|
15
|
+
"types": "./dist/index.d.ts"
|
|
16
|
+
},
|
|
17
|
+
"./full": {
|
|
18
|
+
"import": "./dist/full.es.mjs",
|
|
19
|
+
"require": "./dist/full.umd.js",
|
|
20
|
+
"types": "./dist/full.d.ts"
|
|
21
|
+
},
|
|
22
|
+
"./core": {
|
|
23
|
+
"import": "./dist/core.es.mjs",
|
|
24
|
+
"types": "./dist/core/index.d.ts"
|
|
25
|
+
},
|
|
26
|
+
"./reactive": {
|
|
27
|
+
"import": "./dist/reactive.es.mjs",
|
|
28
|
+
"types": "./dist/reactive/index.d.ts"
|
|
29
|
+
},
|
|
30
|
+
"./component": {
|
|
31
|
+
"import": "./dist/component.es.mjs",
|
|
32
|
+
"types": "./dist/component/index.d.ts"
|
|
33
|
+
},
|
|
34
|
+
"./motion": {
|
|
35
|
+
"import": "./dist/motion.es.mjs",
|
|
36
|
+
"types": "./dist/motion/index.d.ts"
|
|
37
|
+
},
|
|
38
|
+
"./security": {
|
|
39
|
+
"import": "./dist/security.es.mjs",
|
|
40
|
+
"types": "./dist/security/index.d.ts"
|
|
41
|
+
},
|
|
42
|
+
"./platform": {
|
|
43
|
+
"import": "./dist/platform.es.mjs",
|
|
44
|
+
"types": "./dist/platform/index.d.ts"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"files": [
|
|
48
|
+
"dist",
|
|
49
|
+
"src",
|
|
50
|
+
"README.md",
|
|
51
|
+
"LICENSE.md"
|
|
52
|
+
],
|
|
53
|
+
"sideEffects": false,
|
|
54
|
+
"scripts": {
|
|
55
|
+
"dev": "vitepress dev docs",
|
|
56
|
+
"build:docs": "vitepress build docs",
|
|
57
|
+
"preview": "vitepress preview docs",
|
|
58
|
+
"playground": "vite dev playground",
|
|
59
|
+
"build": "bun run build:lib && bun run build:umd && bun run build:types",
|
|
60
|
+
"build:lib": "vite build",
|
|
61
|
+
"build:umd": "vite build --config vite.umd.config.ts",
|
|
62
|
+
"build:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
63
|
+
"test": "bun test",
|
|
64
|
+
"test:watch": "bun test --watch",
|
|
65
|
+
"lint": "eslint . --fix",
|
|
66
|
+
"lint:types": "tsc --noEmit",
|
|
67
|
+
"format": "prettier --write .",
|
|
68
|
+
"format:check": "prettier --check .",
|
|
69
|
+
"docs:api": "typedoc",
|
|
70
|
+
"clean": "rimraf dist",
|
|
71
|
+
"prepublishOnly": "bun run clean && bun run build && bun test"
|
|
72
|
+
},
|
|
73
|
+
"keywords": [
|
|
74
|
+
"dom",
|
|
75
|
+
"manipulation",
|
|
76
|
+
"jquery",
|
|
77
|
+
"modern",
|
|
78
|
+
"typescript",
|
|
79
|
+
"signals",
|
|
80
|
+
"reactive",
|
|
81
|
+
"components",
|
|
82
|
+
"web-components",
|
|
83
|
+
"animation",
|
|
84
|
+
"motion",
|
|
85
|
+
"zero-build",
|
|
86
|
+
"cdn"
|
|
87
|
+
],
|
|
88
|
+
"author": "Jonas Pfalzgraf <support@josunlp.de>",
|
|
89
|
+
"license": "MIT",
|
|
90
|
+
"repository": {
|
|
91
|
+
"type": "git",
|
|
92
|
+
"url": "https://github.com/bQuery/bQuery.git"
|
|
93
|
+
},
|
|
94
|
+
"homepage": "https://bQuery.flausch-code.de",
|
|
95
|
+
"bugs": {
|
|
96
|
+
"url": "https://github.com/bQuery/bQuery/issues"
|
|
97
|
+
},
|
|
98
|
+
"publishConfig": {
|
|
99
|
+
"access": "public",
|
|
100
|
+
"registry": "https://registry.npmjs.org/"
|
|
101
|
+
},
|
|
102
|
+
"engines": {
|
|
103
|
+
"node": ">=18.0.0"
|
|
104
|
+
},
|
|
105
|
+
"devDependencies": {
|
|
106
|
+
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
|
107
|
+
"@typescript-eslint/parser": "^8.53.1",
|
|
108
|
+
"bun-types": "^1.3.6",
|
|
109
|
+
"eslint": "^9.39.2",
|
|
110
|
+
"eslint-config-prettier": "^9.1.2",
|
|
111
|
+
"globals": "^15.15.0",
|
|
112
|
+
"happy-dom": "^20.3.7",
|
|
113
|
+
"prettier": "^3.8.1",
|
|
114
|
+
"rimraf": "^5.0.10",
|
|
115
|
+
"typedoc": "^0.25.13",
|
|
116
|
+
"typescript": "^5.9.3",
|
|
117
|
+
"vite": "^5.4.21",
|
|
118
|
+
"vitepress": "^1.6.4"
|
|
119
|
+
}
|
|
120
|
+
}
|