-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 903 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
37
38
39
40
41
42
{
"name": "rsdi",
"version": "3.0.3",
"description": "TypeScript dependency injection container. Strong types without decorators.",
"scripts": {
"build": "tsc",
"test": "vitest"
},
"keywords": [
"dependency injection",
"dependency",
"injection",
"ioc",
"container",
"javascript",
"typescript"
],
"lint-staged": {
"src/**/*.ts": [
"prettier --write --ignore-unknown",
"eslint"
]
},
"files": [
"dist/**"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/radzserg/rsdi3",
"author": "Sergey Radzishevskii <[email protected]>",
"license": "ISC",
"devDependencies": {
"eslint": "^8.44.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"tsd": "^0.28.1",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
}
}