@jdsalasc/solvejs 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +16 -3
  2. package/package.json +61 -39
package/README.md CHANGED
@@ -1,3 +1,16 @@
1
- # @jdsalasc/solvejs
2
-
3
- Meta package that re-exports all SolveJS utility modules.
1
+ # @jdsalasc/solvejs
2
+
3
+ Problem-first utility toolkit for JavaScript and TypeScript.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm i @jdsalasc/solvejs
9
+ ```
10
+
11
+ ## Useful for
12
+
13
+ - format dates in javascript
14
+ - validate regex patterns in typescript
15
+ - array helper functions
16
+ - string case conversion
package/package.json CHANGED
@@ -1,40 +1,62 @@
1
- {
2
- "name": "@jdsalasc/solvejs",
3
- "version": "1.0.0",
4
- "description": "Meta package for SolveJS utilities.",
5
- "license": "MIT",
6
- "type": "module",
7
- "sideEffects": false,
8
- "main": "./dist/cjs/index.cjs",
9
- "module": "./dist/esm/index.js",
10
- "types": "./dist/esm/index.d.ts",
11
- "exports": {
12
- ".": {
13
- "types": "./dist/esm/index.d.ts",
14
- "import": "./dist/esm/index.js",
15
- "require": "./dist/cjs/index.cjs"
16
- }
17
- },
18
- "files": [
19
- "dist",
20
- "README.md"
21
- ],
22
- "scripts": {
23
- "build": "npm run clean && npm run build:esm && npm run build:cjs",
24
- "build:esm": "tsc -p tsconfig.esm.json",
25
- "build:cjs": "tsc -p tsconfig.cjs.json && node ./scripts/rename-cjs.mjs",
26
- "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
27
- "test": "npm run build && node --test test/*.test.mjs",
28
- "lint": "node -e \"console.log('No lint configured for @jdsalasc/solvejs')\""
29
- },
30
- "dependencies": {
31
- "@jdsalasc/solvejs-constants": "1.0.0",
32
- "@jdsalasc/solvejs-date": "1.0.0",
33
- "@jdsalasc/solvejs-list": "1.0.0",
34
- "@jdsalasc/solvejs-regex": "1.0.0",
35
- "@jdsalasc/solvejs-string": "1.0.0"
36
- },
37
- "publishConfig": {
38
- "access": "public"
39
- }
1
+ {
2
+ "name": "@jdsalasc/solvejs",
3
+ "version": "1.0.1",
4
+ "description": "Solve common JavaScript and TypeScript problems with lightweight utilities.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "sideEffects": false,
8
+ "main": "./dist/cjs/index.cjs",
9
+ "module": "./dist/esm/index.js",
10
+ "types": "./dist/esm/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/esm/index.d.ts",
14
+ "import": "./dist/esm/index.js",
15
+ "require": "./dist/cjs/index.cjs"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md"
21
+ ],
22
+ "scripts": {
23
+ "build": "npm run clean && npm run build:esm && npm run build:cjs",
24
+ "build:esm": "tsc -p tsconfig.esm.json",
25
+ "build:cjs": "tsc -p tsconfig.cjs.json && node ./scripts/rename-cjs.mjs",
26
+ "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
27
+ "test": "npm run build && node --test test/*.test.mjs",
28
+ "lint": "node -e \"console.log('No lint configured for @jdsalasc/solvejs')\""
29
+ },
30
+ "dependencies": {
31
+ "@jdsalasc/solvejs-date": "1.0.1",
32
+ "@jdsalasc/solvejs-string": "1.0.1",
33
+ "@jdsalasc/solvejs-list": "1.0.1",
34
+ "@jdsalasc/solvejs-regex": "1.0.1",
35
+ "@jdsalasc/solvejs-constants": "1.0.1"
36
+ },
37
+ "publishConfig": {
38
+ "access": "public"
39
+ },
40
+ "author": "jdsalasc",
41
+ "homepage": "https://github.com/jdsalasca/solvejs#readme",
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "git+https://github.com/jdsalasca/solvejs.git"
45
+ },
46
+ "bugs": {
47
+ "url": "https://github.com/jdsalasca/solvejs/issues"
48
+ },
49
+ "engines": {
50
+ "node": ">=18"
51
+ },
52
+ "keywords": [
53
+ "javascript",
54
+ "typescript",
55
+ "utils",
56
+ "date format",
57
+ "regex validation",
58
+ "array utilities",
59
+ "string utilities",
60
+ "solvejs"
61
+ ]
40
62
  }