-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.69 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
{
"name": "raiutils",
"version": "9.3.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",
"./grab": "./dist/grab.js"
},
"dependencies": {
"chalk": "^5.4.1"
},
"peerDependencies": {
"@babel/parser": "^7.29.8",
"@minify-html/node": "^0.18.1",
"@pecacheu/esbuild-plugin-html": "^0.11.1",
"@types/node": "^26.1.1",
"esbuild": "^0.28.1",
"recast": "^0.24.0",
"terser": "^5.46.0",
"typescript": "^6.0.3"
},
"devDependencies": {
"@babel/parser": "^7.29.8",
"@eslint/js": "^10.0.1",
"@minify-html/node": "^0.18.1",
"@pecacheu/esbuild-plugin-html": "^0.11.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^26.1.1",
"esbuild": "^0.28.1",
"eslint": "^10.6.0",
"eslint-plugin-import-x": "^4.16.2",
"globals": "^17.7.0",
"recast": "^0.24.0",
"terser": "^5.46.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.57.1"
}
}