sandly 0.0.2 → 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.
Files changed (3) hide show
  1. package/dist/index.d.ts +817 -403
  2. package/dist/index.js +426 -328
  3. package/package.json +75 -76
package/package.json CHANGED
@@ -1,77 +1,76 @@
1
1
  {
2
- "name": "sandly",
3
- "version": "0.0.2",
4
- "keywords": [
5
- "typescript",
6
- "sandly",
7
- "dependency-injection",
8
- "dependency-inversion",
9
- "injection",
10
- "di",
11
- "inversion-of-control",
12
- "ioc",
13
- "container",
14
- "layer",
15
- "service",
16
- "aws",
17
- "lambda",
18
- "aws-lambda"
19
- ],
20
- "homepage": "https://github.com/borisrakovan/sandly",
21
- "bugs": {
22
- "url": "https://github.com/borisrakovan/sandly/issues"
23
- },
24
- "author": "Boris Rakovan <b.rakovan@gmail.com> (https://github.com/borisrakovan)",
25
- "repository": {
26
- "type": "git",
27
- "url": "git+https://github.com/borisrakovan/sandly.git"
28
- },
29
- "license": "MIT",
30
- "files": [
31
- "dist"
32
- ],
33
- "type": "module",
34
- "main": "dist/index.js",
35
- "types": "dist/index.d.ts",
36
- "exports": {
37
- ".": {
38
- "types": "./dist/index.d.ts",
39
- "import": "./dist/index.js"
40
- }
41
- },
42
- "scripts": {
43
- "build": "tsdown",
44
- "clean": "rm -rf dist",
45
- "watch": "tsc --watch",
46
- "format": "prettier --write \"{src,test}/**/*.ts\"",
47
- "format:check": "prettier --check \"{src,test}/**/*.ts\"",
48
- "lint": "eslint . --fix",
49
- "lint:check": "eslint . --max-warnings=0",
50
- "type:check": "tsc --noEmit",
51
- "test": "vitest run",
52
- "release": "changeset version && changeset publish"
53
- },
54
- "devDependencies": {
55
- "@changesets/cli": "^2.29.5",
56
- "@eslint/js": "^9.26.0",
57
- "@total-typescript/ts-reset": "^0.6.1",
58
- "@types/aws-lambda": "^8.10.149",
59
- "@types/node": "^22.15.3",
60
- "@types/node-fetch": "^2.6.12",
61
- "dotenv": "^16.5.0",
62
- "esbuild": "^0.25.3",
63
- "eslint": "^9.26.0",
64
- "node-fetch": "^3.3.2",
65
- "prettier": "^3.5.3",
66
- "prettier-plugin-organize-imports": "^4.1.0",
67
- "ts-node": "^10.9.2",
68
- "tsdown": "^0.14.1",
69
- "tsx": "^4.19.4",
70
- "typescript": "^5.8.3",
71
- "typescript-eslint": "^8.38.0",
72
- "vite-tsconfig-paths": "^5.1.4",
73
- "vitest": "^3.1.3",
74
- "zod": "^4.0.15"
75
- },
76
- "packageManager": "pnpm@9.13.0+sha512.beb9e2a803db336c10c9af682b58ad7181ca0fbd0d4119f2b33d5f2582e96d6c0d93c85b23869295b765170fbdaa92890c0da6ada457415039769edf3c959efe"
77
- }
2
+ "name": "sandly",
3
+ "version": "0.1.0",
4
+ "keywords": [
5
+ "typescript",
6
+ "sandly",
7
+ "dependency-injection",
8
+ "dependency-inversion",
9
+ "injection",
10
+ "di",
11
+ "inversion-of-control",
12
+ "ioc",
13
+ "container",
14
+ "layer",
15
+ "service",
16
+ "aws",
17
+ "lambda",
18
+ "aws-lambda"
19
+ ],
20
+ "homepage": "https://github.com/borisrakovan/sandly",
21
+ "bugs": {
22
+ "url": "https://github.com/borisrakovan/sandly/issues"
23
+ },
24
+ "author": "Boris Rakovan <b.rakovan@gmail.com> (https://github.com/borisrakovan)",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/borisrakovan/sandly.git"
28
+ },
29
+ "license": "MIT",
30
+ "files": [
31
+ "dist"
32
+ ],
33
+ "type": "module",
34
+ "main": "dist/index.js",
35
+ "types": "dist/index.d.ts",
36
+ "exports": {
37
+ ".": {
38
+ "types": "./dist/index.d.ts",
39
+ "import": "./dist/index.js"
40
+ }
41
+ },
42
+ "devDependencies": {
43
+ "@changesets/cli": "^2.29.5",
44
+ "@eslint/js": "^9.26.0",
45
+ "@total-typescript/ts-reset": "^0.6.1",
46
+ "@types/aws-lambda": "^8.10.149",
47
+ "@types/node": "^22.15.3",
48
+ "@types/node-fetch": "^2.6.12",
49
+ "dotenv": "^16.5.0",
50
+ "esbuild": "^0.25.3",
51
+ "eslint": "^9.26.0",
52
+ "node-fetch": "^3.3.2",
53
+ "prettier": "^3.5.3",
54
+ "prettier-plugin-organize-imports": "^4.1.0",
55
+ "ts-node": "^10.9.2",
56
+ "tsdown": "^0.14.1",
57
+ "tsx": "^4.19.4",
58
+ "typescript": "^5.8.3",
59
+ "typescript-eslint": "^8.38.0",
60
+ "vite-tsconfig-paths": "^5.1.4",
61
+ "vitest": "^3.1.3",
62
+ "zod": "^4.0.15"
63
+ },
64
+ "scripts": {
65
+ "build": "tsdown",
66
+ "clean": "rm -rf dist",
67
+ "watch": "tsc --watch",
68
+ "format": "prettier --write \"{src,test}/**/*.ts\"",
69
+ "format:check": "prettier --check \"{src,test}/**/*.ts\"",
70
+ "lint": "eslint . --fix",
71
+ "lint:check": "eslint . --max-warnings=0",
72
+ "type:check": "tsc --noEmit",
73
+ "test": "vitest run",
74
+ "release": "changeset version && changeset publish"
75
+ }
76
+ }