-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 964 Bytes
/
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
{
"type": "module",
"license": "MIT",
"repository": "https://github.com/mediaclip/dependency-injection-ts",
"description": "Another strongly-typed dependency injection. Without decorators",
"name": "@mediaclip/dependency-injection",
"version": "1.0.6",
"main": "./dist/index.js",
"keywords": [
"dependency",
"injection"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"clean": "tsc --build --clean --incremental tsconfig.json"
},
"dependencies": {
"@types/node": "^18.0.0"
},
"devDependencies": {
"typescript": "^5.4.3",
"tsup": "^8.0.2"
}
}