@vicaniddouglas/js_aide 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@vicaniddouglas/js_aide",
3
+ "version": "1.5.1",
4
+ "description": "A versatile collection of modular JavaScript utility helpers designed to streamline single-page application (SPA) development and general web programming tasks.",
5
+ "main": "dist/js_aide.cjs.js",
6
+ "module": "dist/js_aide.esm.js",
7
+ "browser": "dist/js_aide.min.js",
8
+ "type": "module",
9
+ "scripts": {
10
+ "test": "vitest",
11
+ "test:ui": "vitest --ui",
12
+ "lint": "eslint .",
13
+ "lint:fix": "eslint . --fix",
14
+ "format": "prettier --write .",
15
+ "build": "node scripts/build.js",
16
+ "prepublishOnly": "npm run build && npm test"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://gitlab.com/vicaniddouglas/js_aide.git"
21
+ },
22
+ "keywords": [
23
+ "utility",
24
+ "javascript",
25
+ "spa",
26
+ "router",
27
+ "validator",
28
+ "helpers"
29
+ ],
30
+ "author": "vicaniddouglas",
31
+ "license": "MIT",
32
+ "bugs": {
33
+ "url": "https://gitlab.com/vicaniddouglas/js_aide/issues"
34
+ },
35
+ "homepage": "https://gitlab.com/vicaniddouglas/js_aide#readme",
36
+ "files": [
37
+ "dist",
38
+ "declarations.d.ts"
39
+ ],
40
+ "devDependencies": {
41
+ "@eslint/js": "^10.0.1",
42
+ "@testing-library/dom": "^10.4.1",
43
+ "@testing-library/jest-dom": "^6.9.1",
44
+ "@vitest/ui": "^4.1.1",
45
+ "esbuild": "^0.27.4",
46
+ "eslint": "^10.1.0",
47
+ "eslint-config-prettier": "^10.1.8",
48
+ "eslint-plugin-prettier": "^5.5.5",
49
+ "globals": "^17.4.0",
50
+ "jsdom": "^29.0.1",
51
+ "prettier": "^3.8.1",
52
+ "vitest": "^4.1.1"
53
+ }
54
+ }