getbox 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,48 @@
1
+ {
2
+ "name": "getbox",
3
+ "version": "0.1.0",
4
+ "description": "Lightweight dependency injection for TypeScript",
5
+ "private": false,
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "default": "./dist/index.js"
14
+ }
15
+ },
16
+ "keywords": [
17
+ "Box",
18
+ "DI",
19
+ "dependency injection",
20
+ "IoC",
21
+ "inversion of control",
22
+ "container"
23
+ ],
24
+ "author": "Eric Afes <eriicafes@gmail.com>",
25
+ "license": "MIT",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/eriicafes/getbox.git"
29
+ },
30
+ "bugs": {
31
+ "url": "https://github.com/eriicafes/getbox/issues"
32
+ },
33
+ "homepage": "https://github.com/eriicafes/getbox#readme",
34
+ "devDependencies": {
35
+ "@changesets/cli": "^2.29.8",
36
+ "@vitest/coverage-v8": "^4.0.16",
37
+ "tsdown": "^0.18.3",
38
+ "typescript": "^5.9.3",
39
+ "vitest": "^4.0.16"
40
+ },
41
+ "scripts": {
42
+ "build": "tsc --noEmit && tsup src/index.ts --format esm,cjs",
43
+ "release": "pnpm run build && changeset publish",
44
+ "watch": "vitest",
45
+ "test": "vitest run",
46
+ "test:coverage": "vitest run --coverage"
47
+ }
48
+ }