-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 KB
/
package.json
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
{
"name": "@perasite/tdi",
"type": "module",
"version": "0.2.8",
"description": "A 1kb, zero-dependencies, immutable, type-safe IoC container for TypeScript",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"author": "PeraSite <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PeraSite/tdi.git"
},
"files": [
"dist"
],
"keywords": [
"ioc",
"di",
"dependency",
"injection",
"container",
"typescript"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"build": "tsup"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.1.8",
"prettier": "^3.4.2",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.9"
},
"packageManager": "[email protected]"
}