-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.18 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
{
"name": "raiutils",
"version": "9.2.0",
"type": "module",
"description": "The ultimate JavaScript & TypeScript companion library. You'll never need jQuery again!",
"repository": {
"type": "git",
"url": "git+https://github.com/Pecacheu/Utils.js.git"
},
"homepage": "https://github.com/Pecacheu/Utils.js",
"author": "Pecacheu",
"license": "GPL-3.0",
"keywords": [
"js",
"jquery",
"utilities",
"utils",
"utils.js",
"DOM",
"UUID",
"schema",
"json",
"network",
"web",
"server",
"mini",
"compact"
],
"files": [
"src",
"dist"
],
"scripts": {
"prepack": "node build"
},
"types": "./dist/utils-node.d.ts",
"exports": {
".": {
"node": "./dist/utils-node.js",
"default": "./dist/utils-dom.js"
},
"./dom": "./dist/utils-dom.js",
"./node": "./dist/utils-node.js",
"./build": "./dist/build.js",
"./router": "./dist/router.js",
"./schema": "./dist/schema.js",
"./uuid": "./dist/uuid.js"
},
"dependencies": {
"chalk": "^5.4.1"
},
"devDependencies": {
"@minify-html/node": "^0.18.1",
"@pecacheu/esbuild-plugin-html": "^0.10.0",
"@types/node": "^26.1.1",
"esbuild": "^0.28.1",
"terser": "^5.46.0",
"typescript": "^6.0.3"
}
}