typesecure 0.1.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,68 @@
1
+ {
2
+ "name": "typesecure",
3
+ "version": "0.1.0",
4
+ "description": "A comprehensive collection of essential cybersecurity utilities with strong typing and runtime validation",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "keywords": [
12
+ "typescript",
13
+ "security",
14
+ "cryptography",
15
+ "encryption",
16
+ "hashing",
17
+ "password",
18
+ "zod",
19
+ "typesafe",
20
+ "cybersecurity"
21
+ ],
22
+ "author": "Arvid Berndtsson",
23
+ "license": "MIT",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/arvid-berndtsson/typesecure.git"
27
+ },
28
+ "bugs": {
29
+ "url": "https://github.com/arvid-berndtsson/typesecure/issues"
30
+ },
31
+ "homepage": "https://github.com/arvid-berndtsson/typesecure#readme",
32
+ "devDependencies": {
33
+ "@eslint/js": "^9.23.0",
34
+ "@types/crypto-js": "^4.2.2",
35
+ "@types/jest": "^29.5.14",
36
+ "@types/node": "^22.13.11",
37
+ "@typescript-eslint/eslint-plugin": "^8.27.0",
38
+ "@typescript-eslint/parser": "^8.27.0",
39
+ "eslint": "^9.23.0",
40
+ "eslint-config-prettier": "^9.1.0",
41
+ "jest": "^29.7.0",
42
+ "prettier": "^3.5.3",
43
+ "ts-jest": "^29.2.6",
44
+ "ts-node": "^10.9.2",
45
+ "tsup": "^8.4.0",
46
+ "typescript": "^5.8.2"
47
+ },
48
+ "dependencies": {
49
+ "crypto-js": "^4.2.0",
50
+ "zod": "^3.24.2"
51
+ },
52
+ "engines": {
53
+ "node": "23.7.x"
54
+ },
55
+ "scripts": {
56
+ "build": "tsup src/index.ts --format cjs,esm --dts",
57
+ "lint": "eslint src tests --ext .ts",
58
+ "lint:fix": "eslint src tests --ext .ts --fix",
59
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
60
+ "test": "jest --config jest.config.js",
61
+ "test:watch": "jest --config jest.config.js --watch",
62
+ "test:coverage": "jest --config jest.config.js --coverage",
63
+ "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
64
+ "preversion": "pnpm run lint",
65
+ "version": "pnpm run format && git add -A src",
66
+ "postversion": "git push && git push --tags"
67
+ }
68
+ }