string-extn 1.0.0

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,58 @@
1
+ {
2
+ "name": "string-extn",
3
+ "version": "1.0.0",
4
+ "description": "A lightweight, TypeScript-first library for safe and functional string manipulation with core utilities, functional programming helpers, and Unicode-safe operations.",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc",
9
+ "test": "jest",
10
+ "prepublishOnly": "npm run build && npm test"
11
+ },
12
+ "keywords": [
13
+ "string",
14
+ "utility",
15
+ "functional",
16
+ "unicode",
17
+ "typescript",
18
+ "string-manipulation",
19
+ "validation",
20
+ "slug",
21
+ "case-conversion",
22
+ "string-masking"
23
+ ],
24
+ "author": "Balaji Katta Venkatarathnam",
25
+ "license": "MIT",
26
+ "type": "module",
27
+ "files": [
28
+ "dist",
29
+ "package.json",
30
+ "README.md",
31
+ "LICENSE"
32
+ ],
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/balaji-kv/string-extn.git"
36
+ },
37
+ "bugs": {
38
+ "url": "https://github.com/balaji-kv/string-extn/issues"
39
+ },
40
+ "homepage": "https://github.com/balaji-kv/string-extn#readme",
41
+ "dependencies": {
42
+ "grapheme-splitter": "^1.0.4",
43
+ "typescript": "^5.9.3"
44
+ },
45
+ "devDependencies": {
46
+ "@types/jest": "^29.5.14",
47
+ "jest": "^29.7.0",
48
+ "ts-jest": "^29.1.2",
49
+ "ts-node": "^10.9.2",
50
+ "glob": "^10.3.10"
51
+ },
52
+ "overrides": {
53
+ "glob": "^10.3.10",
54
+ "inflight": {
55
+ "glob": "^10.3.10"
56
+ }
57
+ }
58
+ }