-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 3.8 KB
/
package.json
File metadata and controls
141 lines (141 loc) · 3.8 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
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@bquery/bquery",
"version": "1.6.0",
"description": "The jQuery for the Modern Web Platform - Zero build, TypeScript-first library with reactivity, components, and motion",
"type": "module",
"main": "./dist/full.umd.js",
"module": "./dist/index.es.mjs",
"types": "./dist/index.d.ts",
"unpkg": "./dist/full.umd.js",
"jsdelivr": "./dist/full.umd.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.mjs",
"require": "./dist/full.umd.js"
},
"./full": {
"types": "./dist/full.d.ts",
"import": "./dist/full.es.mjs",
"require": "./dist/full.umd.js"
},
"./core": {
"import": "./dist/core.es.mjs",
"types": "./dist/core/index.d.ts"
},
"./reactive": {
"import": "./dist/reactive.es.mjs",
"types": "./dist/reactive/index.d.ts"
},
"./component": {
"import": "./dist/component.es.mjs",
"types": "./dist/component/index.d.ts"
},
"./motion": {
"import": "./dist/motion.es.mjs",
"types": "./dist/motion/index.d.ts"
},
"./security": {
"import": "./dist/security.es.mjs",
"types": "./dist/security/index.d.ts"
},
"./platform": {
"import": "./dist/platform.es.mjs",
"types": "./dist/platform/index.d.ts"
},
"./router": {
"import": "./dist/router.es.mjs",
"types": "./dist/router/index.d.ts"
},
"./store": {
"import": "./dist/store.es.mjs",
"types": "./dist/store/index.d.ts"
},
"./view": {
"import": "./dist/view.es.mjs",
"types": "./dist/view/index.d.ts"
},
"./storybook": {
"import": "./dist/storybook.es.mjs",
"types": "./dist/storybook/index.d.ts"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE.md"
],
"sideEffects": false,
"scripts": {
"dev": "vitepress dev docs",
"build:docs": "vitepress build docs",
"preview": "vitepress preview docs",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"build": "bun run build:lib && bun run build:umd && bun run build:types",
"build:lib": "vite build",
"build:umd": "vite build --config vite.umd.config.ts",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"test": "bun test",
"test:types": "tsc -p tsconfig.component-test.json --noEmit",
"test:watch": "bun test --watch",
"lint": "eslint . --fix",
"lint:types": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs:api": "typedoc",
"clean": "rimraf dist",
"prepublishOnly": "bun run clean && bun run build && bun test"
},
"keywords": [
"dom",
"manipulation",
"jquery",
"modern",
"typescript",
"signals",
"reactive",
"components",
"web-components",
"animation",
"motion",
"zero-build",
"cdn"
],
"author": "Jonas Pfalzgraf <support@josunlp.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bQuery/bQuery.git"
},
"homepage": "https://bQuery.flausch-code.de",
"bugs": {
"url": "https://github.com/bQuery/bQuery/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@storybook/addon-docs": "^10.2.19",
"@storybook/web-components-vite": "^10.2.19",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"bun-types": "^1.3.10",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"happy-dom": "^20.8.4",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"storybook": "^10.2.19",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vitepress": "^1.6.4"
}
}