-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 906 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 906 Bytes
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
{
"name": "dabbyjs",
"version": "0.10.1",
"homepage": "https://hexydec.github.io/dabby",
"author": "Will Earp <will@hexydec.com>",
"description": "A lightweight modular ES6 jQuery clone library built for modern browsers",
"keywords": [
"util",
"functional",
"jquery",
"client",
"browser",
"selector",
"alternative",
"javascript"
],
"contributors": [],
"main": "dist/dabby.js",
"types": "dist/src/build.d.ts",
"source": "src/build.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/hexydec/dabby/issues"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"deploy": "vite build --mode production"
},
"browserslist": [
"defaults"
],
"files": [
"dist/*.js",
"src/**/*.js"
],
"devDependencies": {
"terser": "^5.46.0",
"vite": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexydec/dabby.git"
}
}