ripple-di 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/LICENSE +21 -0
- package/README.md +507 -0
- package/dist/index.d.mts +379 -0
- package/dist/index.mjs +948 -0
- package/package.json +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ripple-di",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"description": "Scoped dependency injection for TypeScript with automatic dependency tracking and lifecycle-aware cleanup.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"dependency-injection",
|
|
8
|
+
"di",
|
|
9
|
+
"inversion-of-control",
|
|
10
|
+
"ioc",
|
|
11
|
+
"typescript",
|
|
12
|
+
"scoped",
|
|
13
|
+
"async-context",
|
|
14
|
+
"asynclocalstorage",
|
|
15
|
+
"async-hooks",
|
|
16
|
+
"lifecycle",
|
|
17
|
+
"testing"
|
|
18
|
+
],
|
|
19
|
+
"author": "Ilya Semenov",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"sideEffects": false,
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=18"
|
|
24
|
+
},
|
|
25
|
+
"packageManager": "bun@1.3.14",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/IlyaSemenov/ripple-di.git"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://github.com/IlyaSemenov/ripple-di#readme",
|
|
31
|
+
"bugs": "https://github.com/IlyaSemenov/ripple-di/issues",
|
|
32
|
+
"exports": {
|
|
33
|
+
".": "./dist/index.mjs",
|
|
34
|
+
"./package.json": "./package.json"
|
|
35
|
+
},
|
|
36
|
+
"types": "./dist/index.d.mts",
|
|
37
|
+
"files": [
|
|
38
|
+
"README.md",
|
|
39
|
+
"dist"
|
|
40
|
+
],
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public",
|
|
43
|
+
"provenance": true
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "tsdown",
|
|
47
|
+
"prepare": "lefthook install",
|
|
48
|
+
"test": "bun test",
|
|
49
|
+
"smoke": "node tests/smoke.mjs",
|
|
50
|
+
"types": "tsc && tsc -p tests/tsconfig.json",
|
|
51
|
+
"prepublishOnly": "bun run build",
|
|
52
|
+
"lint": "biome check --write ."
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@arethetypeswrong/core": "^0.18.5",
|
|
56
|
+
"@biomejs/biome": "^2.5.5",
|
|
57
|
+
"@changesets/cli": "^2.31.1",
|
|
58
|
+
"@tsconfig/bun": "^1.0.10",
|
|
59
|
+
"@types/bun": "^1.3.14",
|
|
60
|
+
"publint": "^0.3.22",
|
|
61
|
+
"tsdown": "^0.22.14",
|
|
62
|
+
"typescript": "^7.0.2"
|
|
63
|
+
}
|
|
64
|
+
}
|