-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.37 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@drepkovsky/tinydi",
"version": "2.3.0",
"description": "A 0.9kb lightweight, type-safe dependency injection container for TypeScript with explicit sync/async handling",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run lint && npm run build",
"typecheck": "tsc --noEmit",
"format": "biome format ./src --write",
"lint": "biome lint ./src",
"lint:fix": "biome lint ./src --write",
"check": "biome check ./src",
"check:fix": "biome check ./src --write"
},
"keywords": [
"dependency-injection",
"di",
"ioc",
"typescript",
"singleton",
"container"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/node": "^20.11.24",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drepkovsky/tinydi.git"
},
"bugs": {
"url": "https://github.com/drepkovsky/tinydi/issues"
},
"homepage": "https://github.com/drepkovsky/tinydi#readme",
"engines": {
"node": ">=14.0.0"
}
}