-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.53 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
{
"name": "billy-herrington-utils",
"description": "daddy told us not to be ashamed of our utils",
"version": "2.1.1",
"license": "MIT",
"keywords": [
"utils",
"observer",
"dom",
"fetch",
"arrays",
"typescript",
"async",
"promises",
"mutation-observer",
"throttle",
"memoize",
"lazy-loading",
"string-manipulation",
"formatting",
"html-parser",
"helpers",
"toolkit",
"dom-manipulation"
],
"author": "smartacephale atm.mormon@protonmail.com (https://github.com/smartacephale)",
"homepage": "https://github.com/smartacephale/billy-herrington-utils#readme",
"type": "module",
"main": "dist/billy-herrington-utils.umd.js",
"module": "dist/billy-herrington-utils.es.js",
"types": "dist/index.d.ts",
"repository": "github:smartacephale/billy-herrington-utils",
"bugs": {
"url": "https://github.com/smartacephale/billy-herrington-utils/issues",
"email": "atm.mormon@protonmail.com"
},
"browser": "dist/billy-herrington-utils.es.js",
"unpkg": "dist/billy-herrington-utils.es.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/billy-herrington-utils.es.js",
"require": "./dist/billy-herrington-utils.umd.js"
}
},
"files": [
"src/**/*",
"dist/**/*"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^25.2.3",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
}
}