feat: initial commit introducing NonEmptyString schema

This commit is contained in:
Nicholas Gelinas
2026-07-07 16:28:08 -04:00
commit adf5028cf5
8 changed files with 1140 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "@heliospolis/js",
"version": "1.0.0",
"description": "",
"type": "module",
"exports": {
"./*": "./src/*.js"
},
"scripts": {
"clean": "rm -r node_modules && echo 'Removed ./node_modules' && find src -name '*.d.ts' -delete && echo 'Removed generated declarations from ./src'",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-only",
"devDependencies": {
"@faker-js/faker": "^10.5.0",
"@vitest/browser-playwright": "^4.1.9",
"@vitest/ui": "4.1.9",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"dependencies": {
"zod": "^4.4.3"
}
}