-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 1.85 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
{
"name": "dabbyjs",
"version": "0.11.0",
"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": [],
"type": "module",
"main": "dist/dabby.js",
"types": "dist/dabby.d.ts",
"source": "src/dabby.ts",
"exports": {
".": {
"types": "./dist/dabby.d.ts",
"default": "./dist/dabby.js"
},
"./full": {
"types": "./dist/build.d.ts",
"default": "./dist/full.js"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"./src/*": "./src/*",
"./dist/*": "./dist/*"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hexydec/dabby/issues"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:types": "tsd",
"build": "tsc -p tsconfig.build.json && vite build",
"build:types": "tsc -p tsconfig.build.json",
"build:bundle": "vite build",
"dev": "vite build --watch",
"demo": "vite --config demo/vite.config.ts"
},
"browserslist": [
"defaults"
],
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map",
"src/**/*.ts",
"!src/**/test.ts"
],
"tsd": {
"directory": "test-d",
"compilerOptions": {
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"paths": {
"dabbyjs": [
"./src/dabby.ts"
],
"dabbyjs/*": [
"./src/*",
"./dist/*"
]
}
}
},
"devDependencies": {
"@types/node": "^25.5.0",
"benchmark": "^2.1.4",
"happy-dom": "^20.8.9",
"jsdoc": "^4.0.4",
"terser": "^5.46.0",
"tsd": "^0.33.0",
"typescript": "^5.9.2",
"vite": "^7.3.3",
"vitest": "^3.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexydec/dabby.git"
}
}